bsl::unordered_set::begin

begin overloads

Synopses

Declared in <bslstl_unorderedset.h>

Return an iterator providing modifiable access to the first value_type object (in the sequence of value_type objects) maintained by this set, or the end iterator if this set is empty.

unordered_set<KEY, HASH, EQUAL, ALLOCATOR>::iterator
begin() noexcept;
» more...

Return an iterator providing non-modifiable access to the first value_type object in the sequence of value_type objects maintained by this set, or the end iterator if this set is empty.

unordered_set<KEY, HASH, EQUAL, ALLOCATOR>::const_iterator
begin() const noexcept;
» more...

Return a local iterator providing modifiable access to the first value_type object in the sequence of value_type objects of the bucket having the specified index, in the array of buckets maintained by this set, or the end(index) otherwise.

unordered_set<KEY, HASH, EQUAL, ALLOCATOR>::local_iterator
begin(size_type index);
» more...

Return a local iterator providing non-modifiable access to the first value_type object (in the sequence of value_type objects) of the bucket having the specified index in the array of buckets maintained by this set, or the end(index) otherwise.

unordered_set<KEY, HASH, EQUAL, ALLOCATOR>::const_local_iterator
begin(size_type index) const;
» more...