tmp/tmp9yp8oekp/{from.md → to.md}
RENAMED
|
@@ -27,11 +27,11 @@ template<class I2, class S2>
|
|
| 27 |
|
| 28 |
``` cpp
|
| 29 |
template<class I2, class S2>
|
| 30 |
requires convertible_to<const I2&, I> && convertible_to<const S2&, S> &&
|
| 31 |
assignable_from<I&, const I2&> && assignable_from<S&, const S2&>
|
| 32 |
-
common_iterator& operator=(const common_iterator<I2, S2>& x);
|
| 33 |
```
|
| 34 |
|
| 35 |
*Preconditions:* `x.v_.valueless_by_exception()` is `false`.
|
| 36 |
|
| 37 |
*Effects:* Equivalent to:
|
|
|
|
| 27 |
|
| 28 |
``` cpp
|
| 29 |
template<class I2, class S2>
|
| 30 |
requires convertible_to<const I2&, I> && convertible_to<const S2&, S> &&
|
| 31 |
assignable_from<I&, const I2&> && assignable_from<S&, const S2&>
|
| 32 |
+
constexpr common_iterator& operator=(const common_iterator<I2, S2>& x);
|
| 33 |
```
|
| 34 |
|
| 35 |
*Preconditions:* `x.v_.valueless_by_exception()` is `false`.
|
| 36 |
|
| 37 |
*Effects:* Equivalent to:
|