tmp/tmp5xt3ybvr/{from.md → to.md}
RENAMED
|
@@ -1,17 +1,18 @@
|
|
| 1 |
#### `unordered_multiset` constructors <a id="unord.multiset.cnstr">[[unord.multiset.cnstr]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
-
|
|
|
|
| 5 |
const hasher& hf = hasher(),
|
| 6 |
const key_equal& eql = key_equal(),
|
| 7 |
const allocator_type& a = allocator_type());
|
| 8 |
```
|
| 9 |
|
| 10 |
*Effects:* Constructs an empty `unordered_multiset` using the specified
|
| 11 |
hash function, key equality function, and allocator, and using at least
|
| 12 |
-
*`n`* buckets.
|
| 13 |
*implementation-defined*. `max_load_factor()` returns 1.0.
|
| 14 |
|
| 15 |
*Complexity:* Constant.
|
| 16 |
|
| 17 |
``` cpp
|
|
|
|
| 1 |
#### `unordered_multiset` constructors <a id="unord.multiset.cnstr">[[unord.multiset.cnstr]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
+
unordered_multiset() : unordered_multiset(size_type(see below)) { }
|
| 5 |
+
explicit unordered_multiset(size_type n,
|
| 6 |
const hasher& hf = hasher(),
|
| 7 |
const key_equal& eql = key_equal(),
|
| 8 |
const allocator_type& a = allocator_type());
|
| 9 |
```
|
| 10 |
|
| 11 |
*Effects:* Constructs an empty `unordered_multiset` using the specified
|
| 12 |
hash function, key equality function, and allocator, and using at least
|
| 13 |
+
*`n`* buckets. For the default constructor, the number of buckets is
|
| 14 |
*implementation-defined*. `max_load_factor()` returns 1.0.
|
| 15 |
|
| 16 |
*Complexity:* Constant.
|
| 17 |
|
| 18 |
``` cpp
|