bsl::unordered_multimap::begin

begin overloads

Synopses

Declared in <bslstl_unorderedmultimap.h>

Return an iterator to the first element, or end if empty.

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

Same as the related overload above for begin.

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

Return a local iterator to the first element in the bucket at index.

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

Return a local iterator to the first element in the bucket at index.

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

Return Value

  • iterator to the first element, or end() if empty
  • const iterator to the first element, or end() if empty
  • local iterator to the first element, or end(index) if empty
  • const local iterator to the first element, or end(index) if empty

Parameters

NameDescription
indexbucket index