From Jason Turner

[unord.set.swap]

Diff to HTML by rtfpessoa

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