From Jason Turner

[multimap.cons]

Diff to HTML by rtfpessoa

tmp/tmpcr5kl2e6/{from.md → to.md} RENAMED
@@ -1,21 +1,20 @@
1
  #### 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
 
10
  *Complexity:* Constant.
11
 
12
  ``` cpp
13
  template<class InputIterator>
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`).
@@ -24,11 +23,12 @@ object and allocator, and inserts elements from the range \[`first`,
24
  sorted with respect to `comp` and otherwise N log N, where N is
25
  `last - first`.
26
 
27
  ``` cpp
28
  template<container-compatible-range<value_type> R>
29
- multimap(from_range_t, R&& rg, const Compare& comp = Compare(), const Allocator& = Allocator());
 
30
  ```
31
 
32
  *Effects:* Constructs an empty `multimap` using the specified comparison
33
  object and allocator, and inserts elements from the range `rg`.
34
 
 
1
  #### Constructors <a id="multimap.cons">[[multimap.cons]]</a>
2
 
3
  ``` cpp
4
+ constexpr 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
 
10
  *Complexity:* Constant.
11
 
12
  ``` cpp
13
  template<class InputIterator>
14
+ constexpr multimap(InputIterator first, InputIterator last,
15
+ const Compare& comp = Compare(), const Allocator& = Allocator());
 
16
  ```
17
 
18
  *Effects:* Constructs an empty `multimap` using the specified comparison
19
  object and allocator, and inserts elements from the range \[`first`,
20
  `last`).
 
23
  sorted with respect to `comp` and otherwise N log N, where N is
24
  `last - first`.
25
 
26
  ``` cpp
27
  template<container-compatible-range<value_type> R>
28
+ constexpr multimap(from_range_t, R&& rg,
29
+ const Compare& comp = Compare(), const Allocator& = Allocator());
30
  ```
31
 
32
  *Effects:* Constructs an empty `multimap` using the specified comparison
33
  object and allocator, and inserts elements from the range `rg`.
34