From Jason Turner

[move.iter.op.decr]

Diff to HTML by rtfpessoa

Files changed (1) hide show
  1. tmp/tmp32grhqsn/{from.md → to.md} +0 -22
tmp/tmp32grhqsn/{from.md → to.md} RENAMED
@@ -1,22 +0,0 @@
1
- ##### `move_iterator::operator-{-}` <a id="move.iter.op.decr">[[move.iter.op.decr]]</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
-