tmp/tmp5gmfuvk6/{from.md → to.md}
RENAMED
|
@@ -3,11 +3,11 @@
|
|
| 3 |
``` cpp
|
| 4 |
template<bidirectional_iterator I>
|
| 5 |
constexpr I ranges::prev(I x);
|
| 6 |
```
|
| 7 |
|
| 8 |
-
*Effects:* Equivalent to: `
|
| 9 |
|
| 10 |
``` cpp
|
| 11 |
template<bidirectional_iterator I>
|
| 12 |
constexpr I ranges::prev(I x, iter_difference_t<I> n);
|
| 13 |
```
|
|
|
|
| 3 |
``` cpp
|
| 4 |
template<bidirectional_iterator I>
|
| 5 |
constexpr I ranges::prev(I x);
|
| 6 |
```
|
| 7 |
|
| 8 |
+
*Effects:* Equivalent to: `–x; return x;`
|
| 9 |
|
| 10 |
``` cpp
|
| 11 |
template<bidirectional_iterator I>
|
| 12 |
constexpr I ranges::prev(I x, iter_difference_t<I> n);
|
| 13 |
```
|