std::flat_multimap<Key,T,Compare,KeyContainer,MappedContainer>::insert
Min standard notice:
Inserts element(s) into the container.
# Declarations
iterator insert( const value_type& value );
(since C++23)
iterator insert( value_type&& value );
(since C++23)
iterator insert( const_iterator pos, const value_type& value );
(since C++23)
iterator insert( const_iterator pos, value_type&& value );
(since C++23)
template< class P >
iterator insert( P&& x );
(since C++23)
template< class P >
iterator insert( const_iterator pos, P&& x );
(since C++23)
template< class InputIt >
void insert( InputIt first, InputIt last );
(since C++23)
template< class InputIt >
void insert( std::sorted_equivalent_t, InputIt first, InputIt last );
(since C++23)
void insert( std::initializer_list<key_type> ilist );
(since C++23)
void insert( std::sorted_equivalent_t s, std::initializer_list<key_type> ilist );
(since C++23)
# Parameters
pos: an iterator to the position before which the new element will be insertedvalue: an element value to insertfirst, last: a range of elements to insertilist: an initializer list to insert the values fromx: a value of any type that can be transparently compared with a keys: a disambiguation tag indicating that the input sequence is sorted (with respect to value_comp())
# Example
This section is incompleteReason: no example