| auto emplace | ( | const_iterator | itWhere, |
| ElementConstructionParams &&... | params | ||
| ) | -> std::enable_if_t<std::is_constructible<ElementType, ElementConstructionParams&&... >::value, iterator> |
Constructs a new element before a position specified by an iterator.
| ElementConstructionParams | Types of the parameters which are forwarded to a constructor of the created element. |
| itWhere | An iterator associated with a (pseudo-) element before which the insertion of the new element should take place. |
| params | The parameters from which the new element is constructed. |