rustworkx.PyGraph.out_edges#
- PyGraph.out_edges(node, /)#
Get the endpoint indices and edge data for all edges of a node.
This will return a list of tuples with the child index, the node index and the edge data. This can be used to recreate add_edge() calls. As
PyGraph
is undirected this will return all edges with the first endpoint node index always beingnode
.- Parameters:
node (int) – The index of the node to get the edges for
- Returns out_edges:
A list of tuples of the form:
`(node_index, child_index, edge_data)`
- Return type: