Hyperlinkv0.8.0-beta.28

Graph

Graph.DirectedGraphtypeeffect/Graph.ts:195
DirectedGraph<N, E>

Immutable graph type for source-to-target relationships.

When to use

Use as the immutable graph type when edge direction is part of the model and traversal or neighbor queries should follow source-to-target edges.

Details

DirectedGraph<N, E> is a Graph<N, E, "directed"> with node data of type N and edge data of type E.

Source effect/Graph.ts:1951 lines
export type DirectedGraph<N, E> = Graph<N, E, "directed">
Referenced by 1 symbols