tmp/tmp9c42868l/{from.md → to.md}
RENAMED
|
@@ -13,11 +13,11 @@ constexpr counted_iterator& operator++();
|
|
| 13 |
--length;
|
| 14 |
return *this;
|
| 15 |
```
|
| 16 |
|
| 17 |
``` cpp
|
| 18 |
-
decltype(auto) operator++(int);
|
| 19 |
```
|
| 20 |
|
| 21 |
*Preconditions:* `length > 0`.
|
| 22 |
|
| 23 |
*Effects:* Equivalent to:
|
|
|
|
| 13 |
--length;
|
| 14 |
return *this;
|
| 15 |
```
|
| 16 |
|
| 17 |
``` cpp
|
| 18 |
+
constexpr decltype(auto) operator++(int);
|
| 19 |
```
|
| 20 |
|
| 21 |
*Preconditions:* `length > 0`.
|
| 22 |
|
| 23 |
*Effects:* Equivalent to:
|