| 249 | const EdgeDataT &GetEdgeData(const EdgeIterator e) const { return edge_list[e].data; } |
| 250 | |
| 251 | EdgeIterator BeginEdges(const NodeIterator n) const |
| 252 | { |
| 253 | return EdgeIterator(node_array[n].first_edge); |
| 254 | } |
| 255 | |
| 256 | EdgeIterator EndEdges(const NodeIterator n) const |
| 257 | { |
nothing calls this directly
no outgoing calls
no test coverage detected