From Jason Turner

[move.iter.op.decr]

Diff to HTML by rtfpessoa

tmp/tmpe94aj8be/{from.md → to.md} RENAMED
@@ -1,20 +1,20 @@
1
  ##### `move_iterator::operator-{-}` <a id="move.iter.op.decr">[[move.iter.op.decr]]</a>
2
 
3
  ``` cpp
4
- move_iterator& operator--();
5
  ```
6
 
7
- *Effects:* \dcr`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.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;