From Jason Turner

[multimap.cons]

Diff to HTML by rtfpessoa

tmp/tmplctfrn_d/{from.md → to.md} RENAMED
@@ -1,10 +1,9 @@
1
  #### `multimap` constructors <a id="multimap.cons">[[multimap.cons]]</a>
2
 
3
  ``` cpp
4
- explicit multimap(const Compare& comp,
5
- const Allocator& = Allocator());
6
  ```
7
 
8
  *Effects:* Constructs an empty `multimap` using the specified comparison
9
  object and allocator.
10
 
@@ -15,14 +14,10 @@ template <class InputIterator>
15
  multimap(InputIterator first, InputIterator last,
16
  const Compare& comp = Compare(),
17
  const Allocator& = Allocator());
18
  ```
19
 
20
- *Requires:* If the iterator’s indirection operator returns an lvalue or
21
- a const rvalue `pair<key_type, mapped_type>`, then both `key_type` and
22
- `mapped_type` shall be `CopyInsertable` into `*this`.
23
-
24
  *Effects:* Constructs an empty `multimap` using the specified comparison
25
  object and allocator, and inserts elements from the range \[`first`,
26
  `last`).
27
 
28
  *Complexity:* Linear in N if the range \[`first`, `last`) is already
 
1
  #### `multimap` constructors <a id="multimap.cons">[[multimap.cons]]</a>
2
 
3
  ``` cpp
4
+ explicit multimap(const Compare& comp, const Allocator& = Allocator());
 
5
  ```
6
 
7
  *Effects:* Constructs an empty `multimap` using the specified comparison
8
  object and allocator.
9
 
 
14
  multimap(InputIterator first, InputIterator last,
15
  const Compare& comp = Compare(),
16
  const Allocator& = Allocator());
17
  ```
18
 
 
 
 
 
19
  *Effects:* Constructs an empty `multimap` using the specified comparison
20
  object and allocator, and inserts elements from the range \[`first`,
21
  `last`).
22
 
23
  *Complexity:* Linear in N if the range \[`first`, `last`) is already