Insert each element from the [first, last)] range.

Synopsis

Declared in <bdlc_flathashmap.h>

template<class INPUT_ITERATOR>
void
insert(
    INPUT_ITERATOR first,
    INPUT_ITERATOR last);

Description

Insert into this map the value of each element in the input iterator range specified by first through last (including first, excluding last). The behavior is undefined unless first and last refer to a sequence of valid values where first is at a position at or before last. Note that if the key of a member of the input sequence is equivalent to the key of an earlier member, the later member will not be inserted.

Parameters

Name

Description

first

beginning of the input range

last

end of the input range (exclusive)

Created with MrDocs