insert overloads
Declared in <bslstl_hashtable.h>
Insert a value converted from value and return its node.
template<class SOURCE_TYPE>
bslalg::BidirectionalLink*
insert(SOURCE_TYPE&& value);
» more...
Insert a value converted from value, optionally near hint.
template<class SOURCE_TYPE>
bslalg::BidirectionalLink*
insert(
SOURCE_TYPE&& value,
bslalg::BidirectionalLink* hint);
» more...
address of the newly inserted node
| Name | Description |
|---|---|
| value | source object converted into the inserted value |
| hint | optional insertion hint node |