tmp/tmprlvh3rrq/{from.md → to.md}
RENAMED
|
@@ -25,9 +25,9 @@ constexpr void swap(array& y) noexcept(is_nothrow_swappable_v<T>);
|
|
| 25 |
```
|
| 26 |
|
| 27 |
*Effects:* Equivalent to `swap_ranges(begin(), end(), y.begin())`.
|
| 28 |
|
| 29 |
[*Note 1*: Unlike the `swap` function for other containers,
|
| 30 |
-
`array::swap` takes linear time,
|
| 31 |
cause iterators to become associated with the other
|
| 32 |
container. — *end note*]
|
| 33 |
|
|
|
|
| 25 |
```
|
| 26 |
|
| 27 |
*Effects:* Equivalent to `swap_ranges(begin(), end(), y.begin())`.
|
| 28 |
|
| 29 |
[*Note 1*: Unlike the `swap` function for other containers,
|
| 30 |
+
`array::swap` takes linear time, can exit via an exception, and does not
|
| 31 |
cause iterators to become associated with the other
|
| 32 |
container. — *end note*]
|
| 33 |
|