Lines Matching refs:graph_iterator
44 class graph_iterator {
56 graph_iterator(const graph_iterator& other) : in graph_iterator() function
61 graph_iterator& operator=(const graph_iterator& other) {
76 bool operator==(const graph_iterator& other) const {
82 bool operator!=(const graph_iterator& other) const { return !(operator==(other)); }
86 graph_iterator& operator++() {
92 graph_iterator operator++(int) {
93 graph_iterator result = *this;
105 graph_iterator(GraphContainerType *g, bool begin);
304 friend class graph_iterator; variable
307 typedef graph_iterator<graph, graph_node> iterator;
308 typedef graph_iterator<const graph, const graph_node> const_iterator;
391 friend class graph_iterator; variable