Hyperlinkv0.8.0-beta.28

Graph

Graph.UndirectedGraphtypeeffect/Graph.ts:216
UndirectedGraph<N, E>

Immutable graph type for relationships without source-to-target direction.

When to use

Use when modeling relationships where each edge connects both endpoints without a source-to-target direction.

Details

UndirectedGraph<N, E> is a Graph<N, E, "undirected">.

Source effect/Graph.ts:2161 lines
export type UndirectedGraph<N, E> = Graph<N, E, "undirected">
Referenced by 1 symbols