tmp/tmpm5okgw29/{from.md → to.md}
RENAMED
|
@@ -1,20 +1,20 @@
|
|
| 1 |
##### `move_iterator::operator++` <a id="move.iter.op.incr">[[move.iter.op.incr]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
-
move_iterator& operator++();
|
| 5 |
```
|
| 6 |
|
| 7 |
-
*Effects:* `++current`.
|
| 8 |
|
| 9 |
*Returns:* `*this`.
|
| 10 |
|
| 11 |
``` cpp
|
| 12 |
-
move_iterator operator++(int);
|
| 13 |
```
|
| 14 |
|
| 15 |
-
*Effects:*
|
| 16 |
|
| 17 |
``` cpp
|
| 18 |
move_iterator tmp = *this;
|
| 19 |
++current;
|
| 20 |
return tmp;
|
|
|
|
| 1 |
##### `move_iterator::operator++` <a id="move.iter.op.incr">[[move.iter.op.incr]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
+
constexpr move_iterator& operator++();
|
| 5 |
```
|
| 6 |
|
| 7 |
+
*Effects:* As if by `++current`.
|
| 8 |
|
| 9 |
*Returns:* `*this`.
|
| 10 |
|
| 11 |
``` cpp
|
| 12 |
+
constexpr move_iterator operator++(int);
|
| 13 |
```
|
| 14 |
|
| 15 |
+
*Effects:* As if by:
|
| 16 |
|
| 17 |
``` cpp
|
| 18 |
move_iterator tmp = *this;
|
| 19 |
++current;
|
| 20 |
return tmp;
|