equal
deleted
inserted
replaced
585 |
585 |
586 // Base node of the iterator |
586 // Base node of the iterator |
587 // |
587 // |
588 // Returns the base node of the iterator |
588 // Returns the base node of the iterator |
589 Node baseNode(const IncEdgeIt &edge) const { |
589 Node baseNode(const IncEdgeIt &edge) const { |
590 return edge._direction ? u(edge) : v(edge); |
590 return edge._direction ? this->u(edge) : this->v(edge); |
591 } |
591 } |
592 // Running node of the iterator |
592 // Running node of the iterator |
593 // |
593 // |
594 // Returns the running node of the iterator |
594 // Returns the running node of the iterator |
595 Node runningNode(const IncEdgeIt &edge) const { |
595 Node runningNode(const IncEdgeIt &edge) const { |
596 return edge._direction ? v(edge) : u(edge); |
596 return edge._direction ? this->v(edge) : this->u(edge); |
597 } |
597 } |
598 |
598 |
599 // Mappable extension |
599 // Mappable extension |
600 |
600 |
601 template <typename _Value> |
601 template <typename _Value> |