Construct a new element in place before a position.
Declared in <folly/container/small_vector.h>
template<class... Args>
iterator
emplace(
const_iterator p,
Args&&... args);
An iterator to the newly constructed element.
| Name | Description |
|---|---|
| p | Iterator to the position to insert before. |
| args | Arguments forwarded to the element's constructor. |