MutableUndirectedGraph<N, E>Mutable undirected graph type alias.
When to use
Use when annotating a temporary graph value that can be changed in place and whose edges connect both endpoints without direction.
Source effect/Graph.ts:2501 lines
export type type MutableUndirectedGraph<N, E> =
MutableGraph<N, E, "undirected">
Mutable undirected graph type alias.
When to use
Use when annotating a temporary graph value that can be changed in place and
whose edges connect both endpoints without direction.
MutableUndirectedGraph<function (type parameter) N in type MutableUndirectedGraph<N, E>N, function (type parameter) E in type MutableUndirectedGraph<N, E>E> = interface MutableGraph<out N, out E, T extends Kind = "directed">Mutable graph interface.
When to use
Use when adding, removing, or updating nodes and edges inside a graph
mutation scope.
MutableGraph<function (type parameter) N in type MutableUndirectedGraph<N, E>N, function (type parameter) E in type MutableUndirectedGraph<N, E>E, "undirected">Referenced by 1 symbols