tmp/tmpp6z6xhlk/{from.md → to.md}
RENAMED
|
@@ -8,7 +8,7 @@ template <class P> iterator insert(const_iterator position, P&& x);
|
|
| 8 |
*Effects:* The first form is equivalent to
|
| 9 |
`return emplace(std::forward<P>(x))`. The second form is equivalent to
|
| 10 |
`return emplace_hint(position, std::forward<P>(x))`.
|
| 11 |
|
| 12 |
*Remarks:* These signatures shall not participate in overload resolution
|
| 13 |
-
unless `
|
| 14 |
|
|
|
|
| 8 |
*Effects:* The first form is equivalent to
|
| 9 |
`return emplace(std::forward<P>(x))`. The second form is equivalent to
|
| 10 |
`return emplace_hint(position, std::forward<P>(x))`.
|
| 11 |
|
| 12 |
*Remarks:* These signatures shall not participate in overload resolution
|
| 13 |
+
unless `is_constructible_v<value_type, P&&>` is `true`.
|
| 14 |
|