Heap_const_iterator

operator++() operator--() operator++ operator-- operator*() operator->() operator== operator!=

toggle TOC (ctrl + ⇔)

sal/data/heap.h

Heap_const_iterator
operator++()
operator--()
operator++
operator--
operator*()
operator->()
operator==
operator!=

operator++() | Heap_const_iterator::operator++()

Declaration

void operator++();

Return value

Example

Discussion

operator--() | Heap_const_iterator::operator--()

Declaration

void operator--();

Return value

Example

Discussion

operator++ | Heap_const_iterator::operator++

Declaration

Heap_const_iterator operator++(int);

Parameters

int

Return value

Example

Discussion

operator-- | Heap_const_iterator::operator--

Declaration

Heap_const_iterator operator--(int);

Parameters

int

Return value

Example

Discussion

operator*() | Heap_const_iterator::operator*()

Declaration

T operator*() const;

Return value

Example

Discussion

operator->() | Heap_const_iterator::operator->()

Declaration

const Iter& operator->() const;

Return value

Example

Discussion

operator== | Heap_const_iterator::operator==

Declaration

bool operator==(CR other);

Parameters

other

Return value

Example

Discussion

operator!= | Heap_const_iterator::operator!=

Declaration

bool operator!=(CR other);

Parameters

other

Return value

Example

Discussion