tmp/tmpkm4nadzn/{from.md → to.md}
RENAMED
|
@@ -1,23 +1,21 @@
|
|
| 1 |
-
####
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
template<class P>
|
| 5 |
iterator insert(P&& obj);
|
| 6 |
```
|
| 7 |
|
|
|
|
|
|
|
| 8 |
*Effects:* Equivalent to: `return emplace(std::forward<P>(obj));`
|
| 9 |
|
| 10 |
-
*Remarks:* This signature shall not participate in overload resolution
|
| 11 |
-
unless `is_constructible_v<value_type, P&&>` is `true`.
|
| 12 |
-
|
| 13 |
``` cpp
|
| 14 |
template<class P>
|
| 15 |
iterator insert(const_iterator hint, P&& obj);
|
| 16 |
```
|
| 17 |
|
|
|
|
|
|
|
| 18 |
*Effects:* Equivalent to:
|
| 19 |
`return emplace_hint(hint, std::forward<P>(obj));`
|
| 20 |
|
| 21 |
-
*Remarks:* This signature shall not participate in overload resolution
|
| 22 |
-
unless `is_constructible_v<value_type, P&&>` is `true`.
|
| 23 |
-
|
|
|
|
| 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:
|
| 20 |
`return emplace_hint(hint, std::forward<P>(obj));`
|
| 21 |
|
|
|
|
|
|
|
|
|