llvm::sys::path::reverse_iterator::operator++

Increment operators

Synopses

Declared in <llvm/ADT/iterator.h>

Advance to the previous path component (preincrement).

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

Post-increment the iterator and return the previous value.

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

Return Value

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

Parameters

NameDescription
UnusedUnused postfix-discriminator parameter.