EdgeIndices#
- class EdgeIndices#
Bases:
object
A custom class for the return of edge indices
The class is a read only sequence of integer edge indices.
This class is a container class for the results of functions that return a list of edge indices. It implements the Python sequence protocol. So you can treat the return as a read-only sequence/list that is integer indexed. If you want to use it as an iterator you can by wrapping it in an
iter()
that will yield the results in order.For example:
import rustworkx as rx graph = rx.generators.directed_path_graph(5) edges = rx.edge_indices() # Index based access third_element = edges[2] # Use as iterator edges_iter = iter(edges) first_element = next(edges_iter) second_element = next(edges_iter)