Insert a transparent value if an equivalent key is not present.

Synopsis

Declared in <bslstl_set.h>

template<class LOOKUP_KEY>
pair<iterator, bool>
insert(LOOKUP_KEY&& value)
requires BloombergLP::bslmf::IsTransparentPredicate<COMPARATOR,
                                                   LOOKUP_KEY>::value;

Description

value is left in a valid but unspecified state. Return a pair whose first member is an iterator referring to the (possibly newly inserted) value_type object in this set that is equivalent to value, and whose second member is true if a new value was inserted, and false if the key was already present.

Note: implemented inline due to Sun CC compilation error.

Return Value

pair of iterator and whether a new element was inserted

Parameters

Name

Description

value

key to insert

Created with MrDocs