From Jason Turner

[move.iter.op.incr]

Diff to HTML by rtfpessoa

Files changed (1) hide show
  1. tmp/tmpdb6t72jf/{from.md → to.md} +0 -22
tmp/tmpdb6t72jf/{from.md → to.md} RENAMED
@@ -1,22 +0,0 @@
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;
21
- ```
22
-