llvm::SmallPtrSetIterator::operator++

Increment operators

Synopses

Declared in <llvm/ADT/SmallPtrSet.h>

Pre-increment: advance to the next element and return the updated iterator.

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

Post-increment: advance to the next element and return the previous value.

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

Return Value

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

Parameters

NameDescription
UnusedUnused postfix-discriminator parameter.