From Jason Turner

[reverse.iter.cons]

Diff to HTML by rtfpessoa

Files changed (1) hide show
  1. tmp/tmpsqh_5c54/{from.md → to.md} +11 -1
tmp/tmpsqh_5c54/{from.md → to.md} RENAMED
@@ -1,6 +1,6 @@
1
- ##### `reverse_iterator` constructor <a id="reverse.iter.cons">[[reverse.iter.cons]]</a>
2
 
3
  ``` cpp
4
  constexpr reverse_iterator();
5
  ```
6
 
@@ -19,5 +19,15 @@ constexpr explicit reverse_iterator(Iterator x);
19
  template<class U> constexpr reverse_iterator(const reverse_iterator<U>& u);
20
  ```
21
 
22
  *Effects:* Initializes `current` with `u.current`.
23
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #### Construction and assignment <a id="reverse.iter.cons">[[reverse.iter.cons]]</a>
2
 
3
  ``` cpp
4
  constexpr reverse_iterator();
5
  ```
6
 
 
19
  template<class U> constexpr reverse_iterator(const reverse_iterator<U>& u);
20
  ```
21
 
22
  *Effects:* Initializes `current` with `u.current`.
23
 
24
+ ``` cpp
25
+ template<class U>
26
+ constexpr reverse_iterator&
27
+ operator=(const reverse_iterator<U>& u);
28
+ ```
29
+
30
+ *Effects:* Assigns `u.base()` to `current`.
31
+
32
+ *Returns:* `*this`.
33
+