| 
| 
typedef ConstItemRef  | const_item_iterator | 
|   | Const iterator to LeafItems. 
  | 
|   | 
| 
typedef ConstSubtree< NodeItem, LeafItem >  | const_iterator | 
|   | Const iterator over subtrees. 
  | 
|   | 
| 
typedef const NodeItem &  | const_reference | 
|   | A const reference to the tree's NodeItem type. 
  | 
|   | 
| 
typedef std::iterator_traits< NodeRef >::difference_type  | difference_type | 
|   | Iterator difference type. 
  | 
|   | 
| 
typedef std::conditional< Const, ConstItemRef, ItemRef >::type  | item_iterator | 
|   | A (possibly const) iterator to LeafItems. 
  | 
|   | 
| 
typedef self_t  | iterator | 
|   | A (possibly const) iterator over subtrees. 
  | 
|   | 
| 
typedef std::iterator_traits< NodeRef >::iterator_category  | iterator_category | 
|   | Iterator category. 
  | 
|   | 
| 
typedef std::conditional< Const, constNodeItem *, NodeItem * >::type  | pointer | 
|   | A (possibly const) pointer to the tree's NodeItem type. 
  | 
|   | 
| 
typedef std::conditional< Const, constNodeItem &, NodeItem & >::type  | reference | 
|   | A (possibly const) reference to the tree's NodeItem type. 
  | 
|   | 
| 
typedef std::conditional< Const, ConstSubtree< NodeItem, LeafItem >, Subtree< NodeItem, LeafItem > >::type  | self_t | 
|   | Self type. A ConstSubtree if this is a const iterator; a Subtree otherwise. 
  | 
|   | 
| 
typedef Tree< NodeItem, LeafItem >  | tree_t | 
|   | Type of tree into which this iterator points. 
  | 
|   | 
| 
typedef NodeItem  | value_type | 
|   | The tree's NodeItem type. 
  | 
|   | 
 | 
| 
  | ConstSubtree (const ConstSubtree< NodeItem, LeafItem > &other)=default | 
|   | Construct a duplicate iterator to the same node of the same tree. 
  | 
|   | 
| 
  | ConstSubtree (const Subtree< NodeItem, LeafItem > &other) | 
|   | Construct a duplicate iterator to the same node of the same tree. 
  | 
|   | 
| 
self_t  | begin () const | 
|   | Get first child. 
  | 
|   | 
| 
self_t  | begin () const | 
|   | Get first child. 
  | 
|   | 
| 
self_t  | end () const | 
|   | Get last (off-end) child. 
  | 
|   | 
| 
self_t  | end () const | 
|   | Get last (off-end) child. 
  | 
|   | 
| self_t  | find_parent (const const_item_iterator &i) const | 
|   | Exhaustively search for the direct parent node of item i in this subtree.  
  | 
|   | 
| self_t  | find_parent (const const_item_iterator &i) const | 
|   | Exhaustively search for the direct parent node of item i in this subtree.  
  | 
|   | 
| self_t  | find_parent (const const_item_iterator &i) const | 
|   | Search for the direct parent node of item i in this subtree, using BoundingFn to exclude subtrees which cannot contain i.  
  | 
|   | 
| self_t  | find_parent (const const_item_iterator &i) const | 
|   | Search for the direct parent node of item i in this subtree, using BoundingFn to exclude subtrees which cannot contain i.  
  | 
|   | 
| self_t  | global_begin () const | 
|   | Return an iterator to the first item in the entire tree (the global root).  
  | 
|   | 
| self_t  | global_begin () const | 
|   | Return an iterator to the first item in the entire tree (the global root).  
  | 
|   | 
| self_t  | global_end () const | 
|   | Return an iterator to the last item in the entire tree (the global off-end node).  
  | 
|   | 
| self_t  | global_end () const | 
|   | Return an iterator to the last item in the entire tree (the global off-end node).  
  | 
|   | 
| 
bool  | is_root () const | 
|   | Return whether this node is the root of the entire tree. 
  | 
|   | 
| 
bool  | is_root () const | 
|   | Return whether this node is the root of the entire tree. 
  | 
|   | 
| 
index_t  | item_count () const | 
|   | Number of leaf items in this subtree. 
  | 
|   | 
| 
index_t  | item_count () const | 
|   | Number of leaf items in this subtree. 
  | 
|   | 
| 
item_iterator  | items_begin () const | 
|   | Get first object inside this subtree. 
  | 
|   | 
| 
item_iterator  | items_begin () const | 
|   | Get first object inside this subtree. 
  | 
|   | 
| 
item_iterator  | items_end () const | 
|   | Get last (off-end) object in this subtree. It is invalid to increment or dereference this iterator. 
  | 
|   | 
| 
item_iterator  | items_end () const | 
|   | Get last (off-end) object in this subtree. It is invalid to increment or dereference this iterator. 
  | 
|   | 
| 
index_t  | node_count () const | 
|   | Number of direct child nodes. 
  | 
|   | 
| 
index_t  | node_count () const | 
|   | Number of direct child nodes. 
  | 
|   | 
| 
bool  | operator!= (const self_t &other) const | 
|   | Returns true iff other does not point to the same node of the same tree. 
  | 
|   | 
| 
bool  | operator!= (const self_t &other) const | 
|   | Returns true iff other does not point to the same node of the same tree. 
  | 
|   | 
| 
reference  | operator* () const | 
|   | *i: Get the value of the current node 
  | 
|   | 
| 
reference  | operator* () const | 
|   | *i: Get the value of the current node 
  | 
|   | 
| 
self_t &  | operator+ () | 
|   | +i: Become first child 
  | 
|   | 
| 
self_t &  | operator+ () | 
|   | +i: Become first child 
  | 
|   | 
| 
self_t &  | operator++ () | 
|   | ++i: Become next sibling 
  | 
|   | 
| 
self_t &  | operator++ () | 
|   | ++i: Become next sibling 
  | 
|   | 
| 
self_t  | operator++ (int) | 
|   | i++: Become next sibling 
  | 
|   | 
| 
self_t  | operator++ (int) | 
|   | i++: Become next sibling 
  | 
|   | 
| 
self_t &  | operator- () | 
|   | -i: Become parent 
  | 
|   | 
| 
self_t &  | operator- () | 
|   | -i: Become parent 
  | 
|   | 
| 
self_t &  | operator-- () | 
|   | --i: Become previous sibling 
  | 
|   | 
| 
self_t &  | operator-- () | 
|   | --i: Become previous sibling 
  | 
|   | 
| 
self_t  | operator-- (int) | 
|   | i--: Become previous sibling 
  | 
|   | 
| 
self_t  | operator-- (int) | 
|   | i--: Become previous sibling 
  | 
|   | 
| 
pointer  | operator-> () const | 
|   | i->...: Access member of current node 
  | 
|   | 
| 
pointer  | operator-> () const | 
|   | i->...: Access member of current node 
  | 
|   | 
| 
bool  | operator== (const self_t &other) const | 
|   | Returns true iff other points to the same node of the same tree. 
  | 
|   | 
| 
bool  | operator== (const self_t &other) const | 
|   | Returns true iff other points to the same node of the same tree. 
  | 
|   | 
| self_t  | parent () const | 
|   | Get the parent node.  
  | 
|   | 
| self_t  | parent () const | 
|   | Get the parent node.  
  | 
|   | 
| QueryIterator< self_t, Key, BoundingFn, TestFn >  | query (const Key &key, BoundingFn bound, TestFn test=visit_all_nodes< Key >) const | 
|   | Return an iterator over all the subtrees for which test(*subtree, key) returns true. The iterator dereferences to self_t.  
  | 
|   | 
| QueryIterator< self_t, Key, BoundingFn, TestFn >  | query (const Key &key, BoundingFn bound, TestFn test=visit_all_nodes< Key >) const | 
|   | Return an iterator over all the subtrees for which test(*subtree, key) returns true. The iterator dereferences to self_t.  
  | 
|   | 
| 
self_t  | subtree_begin () const | 
|   | Return the first subtree in a sequence covering all the nodes in this subtree, beginning with the first child of this node. 
  | 
|   | 
| 
self_t  | subtree_begin () const | 
|   | Return the first subtree in a sequence covering all the nodes in this subtree, beginning with the first child of this node. 
  | 
|   | 
| 
self_t  | subtree_end () const | 
|   | Return the last (off-end) subtree in the sequence of all subtrees below this node. 
  | 
|   | 
| 
self_t  | subtree_end () const | 
|   | Return the last (off-end) subtree in the sequence of all subtrees below this node. 
  | 
|   | 
| 
std::conditional< Const, consttree_t &, tree_t & >::type  | tree () const | 
|   | Obtain the tree into which this iterator points. 
  | 
|   | 
| 
std::conditional< Const, consttree_t &, tree_t & >::type  | tree () const | 
|   | Obtain the tree into which this iterator points. 
  | 
|   | 
template<typename NodeItem, typename LeafItem>
class geom::ConstSubtree< NodeItem, LeafItem >
An const iterator to a subtree.