insert overloads
Synopses
Declared in <bslstp_hashmap.h>
Insert the specified __obj if no equivalent key exists.
pair<iterator, bool>
insert(value_type const& __obj);
Insert each value in the specified range.
template<class _InputIterator>
void
insert(
_InputIterator __f,
_InputIterator __l);
Return Value
pair of an iterator to the element and whether insertion occurred
Parameters
Name |
Description |
__obj |
value to insert |
__f |
beginning of the input range |
__l |
end of the input range |
Created with MrDocs