Functions operating on directed edges
Static member | Description |
|
|
Full Usage:
Edge.count graph
Parameters:
AdjGraph<'NodeKey, 'NodeData, 'EdgeData>
Returns: int
|
|
Full Usage:
Edge.find sourceKey targetKey graph
Parameters:
'NodeKey
targetKey : 'NodeKey
graph : AdjGraph<'NodeKey, 'NodeData, 'EdgeData>
Returns: 'NodeKey * 'NodeKey * 'EdgeData
|
Tries to find an edge between the specified nodes. Raises Exception if no such edge exists in the graph.
|
Full Usage:
Edge.iter action graph
Parameters:
'NodeKey -> 'NodeKey -> 'EdgeData -> unit
graph : AdjGraph<'NodeKey, 'NodeData, 'EdgeData>
|
|