tmp/tmptrmix1wg/{from.md → to.md}
RENAMED
|
@@ -1,10 +1,11 @@
|
|
| 1 |
#### `unordered_multiset` swap <a id="unord.multiset.swap">[[unord.multiset.swap]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
template <class Key, class Hash, class Pred, class Alloc>
|
| 5 |
void swap(unordered_multiset<Key, Hash, Pred, Alloc>& x,
|
| 6 |
-
unordered_multiset<Key, Hash, Pred, Alloc>& y)
|
|
|
|
| 7 |
```
|
| 8 |
|
| 9 |
-
*Effects:* `x.swap(y)
|
| 10 |
|
|
|
|
| 1 |
#### `unordered_multiset` swap <a id="unord.multiset.swap">[[unord.multiset.swap]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
template <class Key, class Hash, class Pred, class Alloc>
|
| 5 |
void swap(unordered_multiset<Key, Hash, Pred, Alloc>& x,
|
| 6 |
+
unordered_multiset<Key, Hash, Pred, Alloc>& y)
|
| 7 |
+
noexcept(noexcept(x.swap(y)));
|
| 8 |
```
|
| 9 |
|
| 10 |
+
*Effects:* As if by `x.swap(y)`.
|
| 11 |
|