BloombergLP::bdlcc::StripedUnorderedMultiMap::insert

insert overloads

Synopses

Declared in <bdlcc_stripedunorderedmultimap.h>

Insert into this hash map an element having the specified key and the specified move-insertable value. The value object is left in a valid but unspecified state. If value is allocator-enabled and allocator() != value.allocator() this operation may cost as much as a copy. Note that other elements having the same key may exist in this hash map.

void
insert(
    KEY const& key,
    bslmf::MovableRef<VALUE> value);
» more...

Insert into this hash map an element having the specified key and value. Note that other elements having the same key may exist in this hash map.

void
insert(
    KEY const& key,
    VALUE const& value);
» more...