tmp/tmppyypz1qj/{from.md → to.md}
RENAMED
|
@@ -157,11 +157,11 @@ return *this;
|
|
| 157 |
|
| 158 |
``` cpp
|
| 159 |
constexpr void operator++(int);
|
| 160 |
```
|
| 161 |
|
| 162 |
-
*Effects:* Equivalent to
|
| 163 |
|
| 164 |
``` cpp
|
| 165 |
constexpr iterator operator++(int) requires forward_range<Base>;
|
| 166 |
```
|
| 167 |
|
|
|
|
| 157 |
|
| 158 |
``` cpp
|
| 159 |
constexpr void operator++(int);
|
| 160 |
```
|
| 161 |
|
| 162 |
+
*Effects:* Equivalent to `++*this;`
|
| 163 |
|
| 164 |
``` cpp
|
| 165 |
constexpr iterator operator++(int) requires forward_range<Base>;
|
| 166 |
```
|
| 167 |
|