std::multimap<Key,T,Compare,Allocator>::emplace_hint

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

# Return value

An iterator to the inserted element.

# Example

This section is incompleteReason: no example

# See also