From Jason Turner

[reverse.iter.cons]

Diff to HTML by rtfpessoa

tmp/tmps8763myj/{from.md → to.md} RENAMED
@@ -1,23 +1,23 @@
1
  ##### `reverse_iterator` constructor <a id="reverse.iter.cons">[[reverse.iter.cons]]</a>
2
 
3
  ``` cpp
4
- reverse_iterator();
5
  ```
6
 
7
- *Effects:* Value initializes `current`. Iterator operations applied to
8
  the resulting iterator have defined behavior if and only if the
9
  corresponding operations are defined on a value-initialized iterator of
10
  type `Iterator`.
11
 
12
  ``` cpp
13
- explicit reverse_iterator(Iterator x);
14
  ```
15
 
16
  *Effects:* Initializes `current` with `x`.
17
 
18
  ``` cpp
19
- template <class U> reverse_iterator(const reverse_iterator<U> &u);
20
  ```
21
 
22
  *Effects:* Initializes `current` with `u.current`.
23
 
 
1
  ##### `reverse_iterator` constructor <a id="reverse.iter.cons">[[reverse.iter.cons]]</a>
2
 
3
  ``` cpp
4
+ constexpr reverse_iterator();
5
  ```
6
 
7
+ *Effects:* Value-initializes `current`. Iterator operations applied to
8
  the resulting iterator have defined behavior if and only if the
9
  corresponding operations are defined on a value-initialized iterator of
10
  type `Iterator`.
11
 
12
  ``` cpp
13
+ constexpr explicit reverse_iterator(Iterator x);
14
  ```
15
 
16
  *Effects:* Initializes `current` with `x`.
17
 
18
  ``` cpp
19
+ template <class U> constexpr reverse_iterator(const reverse_iterator<U>& u);
20
  ```
21
 
22
  *Effects:* Initializes `current` with `u.current`.
23