From Jason Turner

[map.special]

Diff to HTML by rtfpessoa

tmp/tmpvw8dbd5l/{from.md → to.md} RENAMED
@@ -1,14 +1,11 @@
1
  #### `map` specialized algorithms <a id="map.special">[[map.special]]</a>
2
 
3
  ``` cpp
4
  template <class Key, class T, class Compare, class Allocator>
5
  void swap(map<Key, T, Compare, Allocator>& x,
6
- map<Key,T,Compare,Allocator>& y);
 
7
  ```
8
 
9
- *Effects:*
10
-
11
- ``` cpp
12
- x.swap(y);
13
- ```
14
 
 
1
  #### `map` specialized algorithms <a id="map.special">[[map.special]]</a>
2
 
3
  ``` cpp
4
  template <class Key, class T, class Compare, class Allocator>
5
  void swap(map<Key, T, Compare, Allocator>& x,
6
+ map<Key, T, Compare, Allocator>& y)
7
+ noexcept(noexcept(x.swap(y)));
8
  ```
9
 
10
+ *Effects:* As if by `x.swap(y)`.
 
 
 
 
11