tmp/tmpbc0hyr4p/{from.md → to.md}
RENAMED
|
@@ -11,11 +11,11 @@ sequence [[counted.iterator]].
|
|
| 11 |
|
| 12 |
*Effects:* Equivalent to: `return x.length == y.length;`
|
| 13 |
|
| 14 |
``` cpp
|
| 15 |
friend constexpr bool operator==(
|
| 16 |
-
const counted_iterator& x, default_sentinel_t);
|
| 17 |
```
|
| 18 |
|
| 19 |
*Effects:* Equivalent to: `return x.length == 0;`
|
| 20 |
|
| 21 |
``` cpp
|
|
|
|
| 11 |
|
| 12 |
*Effects:* Equivalent to: `return x.length == y.length;`
|
| 13 |
|
| 14 |
``` cpp
|
| 15 |
friend constexpr bool operator==(
|
| 16 |
+
const counted_iterator& x, default_sentinel_t) noexcept;
|
| 17 |
```
|
| 18 |
|
| 19 |
*Effects:* Equivalent to: `return x.length == 0;`
|
| 20 |
|
| 21 |
``` cpp
|