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 type UndirectedGraph<N, E> = Graph<
N,
E,
"undirected"
>
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">.
UndirectedGraph<function (type parameter) N in type UndirectedGraph<N, E>N, function (type parameter) E in type UndirectedGraph<N, E>E> = interface Graph<out N, out E, T extends Kind = "directed">Immutable graph interface.
When to use
Use as the immutable graph model for code that queries, traverses,
transforms, or analyzes graph structure without mutating it.
Graph<function (type parameter) N in type UndirectedGraph<N, E>N, function (type parameter) E in type UndirectedGraph<N, E>E, "undirected">Referenced by 1 symbols