Inserts value near hint if it is absent; equivalent to insert.
Declared in <folly/container/sorted_vector_types.h>
iterator
emplace_hint(
const_iterator hint,
value_type&& value);
An iterator to the inserted or existing element.
| Name | Description |
|---|---|
| hint | Position guess for where the element belongs. |
| value | The element to insert. |