Iterators

Template with iterator classes.

Template parameters: Node = tree node struct type; expected to be an instance of the Node struct template in ocean.util.container.ebtree.model.Node.

template Iterators (
Node
) {}

Members

Classes

Iterator
class Iterator

Provides 'foreach' and 'foreach_reverse' iteration over the nodes in the tree, starting with the first or last node, respectively.

PartIterator
class PartIterator

Provides 'foreach' and 'foreach_reverse' iteration over the nodes in the tree, starting with the first node whose key is greater or less than a reference key, respectively.

Meta