tmp/tmpwj_2txat/{from.md → to.md}
RENAMED
|
@@ -1,19 +1,19 @@
|
|
| 1 |
#### Modifiers <a id="unord.multimap.modifiers">[[unord.multimap.modifiers]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
template<class P>
|
| 5 |
-
iterator insert(P&& obj);
|
| 6 |
```
|
| 7 |
|
| 8 |
*Constraints:* `is_constructible_v<value_type, P&&>` is `true`.
|
| 9 |
|
| 10 |
*Effects:* Equivalent to: `return emplace(std::forward<P>(obj));`
|
| 11 |
|
| 12 |
``` cpp
|
| 13 |
template<class P>
|
| 14 |
-
iterator insert(const_iterator hint, P&& obj);
|
| 15 |
```
|
| 16 |
|
| 17 |
*Constraints:* `is_constructible_v<value_type, P&&>` is `true`.
|
| 18 |
|
| 19 |
*Effects:* Equivalent to:
|
|
|
|
| 1 |
#### Modifiers <a id="unord.multimap.modifiers">[[unord.multimap.modifiers]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
template<class P>
|
| 5 |
+
constexpr iterator insert(P&& obj);
|
| 6 |
```
|
| 7 |
|
| 8 |
*Constraints:* `is_constructible_v<value_type, P&&>` is `true`.
|
| 9 |
|
| 10 |
*Effects:* Equivalent to: `return emplace(std::forward<P>(obj));`
|
| 11 |
|
| 12 |
``` cpp
|
| 13 |
template<class P>
|
| 14 |
+
constexpr iterator insert(const_iterator hint, P&& obj);
|
| 15 |
```
|
| 16 |
|
| 17 |
*Constraints:* `is_constructible_v<value_type, P&&>` is `true`.
|
| 18 |
|
| 19 |
*Effects:* Equivalent to:
|