llvm::iterator_facade_base::operator++

Increment operators

Synopses

Declared in <llvm/ADT/iterator.h>

Pre-increment the iterator.

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

Post-increment the iterator and return the previous value.

DerivedT
operator++(int Unused);
» more...

Return Value

  • Reference to this iterator after incrementing.
  • A copy of the iterator before incrementing.

Parameters

NameDescription
UnusedUnused postfix-discriminator parameter.