Insert each element from the specified range.

Synopsis

Declared in <bslstl_unorderedmultimap.h>

template<class RANGE>
void
insert_range(RANGE&& range);

Description

Insert into this unordered multimap the value of each value_type object in the specified range. Note that RANGE must meet the requirements of an input range and the values from range must have a type matching or convertible to value_type.

Parameters

Name

Description

range

input range of elements to insert

Created with MrDocs