Heap_iterator
operator++()
operator--()
operator++
operator--
operator*()
operator->()
operator==
operator!=
toggle TOC (ctrl + ⇔)
sal/data/heap.h
Heap_iterator | |
---|---|
operator++() | |
operator--() | |
operator++ | |
operator-- | |
operator*() | |
operator->() | |
operator== | |
operator!= |
operator++() | Heap_iterator::
operator++()¶
Declaration
void operator++();
Return value
Example
Discussion
operator--() | Heap_iterator::
operator--()¶
Declaration
void operator--();
Return value
Example
Discussion
operator++ | Heap_iterator::
operator++¶
Declaration
Heap_iterator operator++(int);
Parameters
int |
Return value
Example
Discussion
operator-- | Heap_iterator::
operator--¶
Declaration
Heap_iterator operator--(int);
Parameters
int |
Return value
Example
Discussion
operator*() | Heap_iterator::
operator*()¶
Declaration
T& operator*();
Return value
Example
Discussion
operator->() | Heap_iterator::
operator->()¶
Declaration
Iter& operator->();
Return value
Example
Discussion
operator== | Heap_iterator::
operator==¶
Declaration
bool operator==(CR other);
Parameters
other |
Return value
Example
Discussion
operator!= | Heap_iterator::
operator!=¶
Declaration
bool operator!=(CR other);
Parameters
other |
Return value
Example
Discussion