Increment operators
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...
| Name | Description |
|---|---|
| Unused | Unused postfix-discriminator parameter. |