std::unordered_multimap<Key,T,Hash,KeyEqual,Allocator>::emplace_hint
Min standard notice:
Inserts a new element into the container, using hint as a suggestion where the element should go.
# Declarations
template< class... Args >
iterator emplace_hint( const_iterator hint, Args&&... args );
(since C++11)
# Parameters
hint: iterator, used as a suggestion as to where to insert the new elementargs: arguments to forward to the constructor of the element
# Return value
An iterator to the inserted element.
# Example
This section is incompleteReason: no example