absl::linked_hash_set::begin

begin overloads

Synopses

Declared in <absl/container/linked_hash_set.h>

Returns an iterator to the first element, in insertion order.

iterator
begin();
» more...

Returns a const iterator to the first element, in insertion order.

const_iterator
begin() const;
» more...

Return Value

  • An iterator to the beginning of the set.
  • A const iterator to the beginning of the set.