tmp/tmpyty7xbls/{from.md → to.md}
RENAMED
|
@@ -2,21 +2,21 @@
|
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
constexpr common_iterator& operator++();
|
| 5 |
```
|
| 6 |
|
| 7 |
-
|
| 8 |
|
| 9 |
*Effects:* Equivalent to `++get<I>(v_)`.
|
| 10 |
|
| 11 |
*Returns:* `*this`.
|
| 12 |
|
| 13 |
``` cpp
|
| 14 |
constexpr decltype(auto) operator++(int);
|
| 15 |
```
|
| 16 |
|
| 17 |
-
|
| 18 |
|
| 19 |
*Effects:* If `I` models `forward_iterator`, equivalent to:
|
| 20 |
|
| 21 |
``` cpp
|
| 22 |
common_iterator tmp = *this;
|
|
|
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
constexpr common_iterator& operator++();
|
| 5 |
```
|
| 6 |
|
| 7 |
+
`holds_alternative<I>(v_)` is `true`.
|
| 8 |
|
| 9 |
*Effects:* Equivalent to `++get<I>(v_)`.
|
| 10 |
|
| 11 |
*Returns:* `*this`.
|
| 12 |
|
| 13 |
``` cpp
|
| 14 |
constexpr decltype(auto) operator++(int);
|
| 15 |
```
|
| 16 |
|
| 17 |
+
`holds_alternative<I>(v_)` is `true`.
|
| 18 |
|
| 19 |
*Effects:* If `I` models `forward_iterator`, equivalent to:
|
| 20 |
|
| 21 |
``` cpp
|
| 22 |
common_iterator tmp = *this;
|