indirectmap::insert

Insert a key/value pair, where the key is a pointer.

Synopsis

Declared in <indirectmap.h>

std::pair<iterator, bool>
insert(value_type const& value);

Return Value

A pair of an iterator to the entry and whether it was newly inserted.

Parameters

NameDescription
valueThe pointer-keyed entry to insert.