std::multiset<Key,Compare,Allocator>::emplace_hint
Min standard notice:
Inserts a new element into the container as close as possible to the position just before hint.
# Declarations
template< class... Args >
iterator emplace_hint( const_iterator hint, Args&&... args );
(since C++11)
# Parameters
hint: iterator to the position before which the new element will be insertedargs: arguments to forward to the constructor of the element
# Return value
An iterator to the inserted element.
# Example
This section is incompleteReason: no example