absl::AnySpan::IteratorBase::operator++

Advances the iterator by one position.

Synopses

Declared in <absl/types/any_span.h>

Advances the iterator by one position.

Iter&
operator++();
» more...

Advances the iterator by one position.

Iter
operator++(int unused);
» more...

Return Value

  • A reference to this iterator.
  • A copy of the iterator before advancing.

Parameters

NameDescription
unusedUnused tag distinguishing the postfix form.