MutableDirectedGraph<N, E>Mutable directed graph type alias.
When to use
Use when annotating a temporary graph value that can be changed in place and whose edges have source-to-target direction.
Source effect/Graph.ts:2331 lines
export type type MutableDirectedGraph<N, E> =
MutableGraph<N, E, "directed">
Mutable directed graph type alias.
When to use
Use when annotating a temporary graph value that can be changed in place and
whose edges have source-to-target direction.
MutableDirectedGraph<function (type parameter) N in type MutableDirectedGraph<N, E>N, function (type parameter) E in type MutableDirectedGraph<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 MutableDirectedGraph<N, E>N, function (type parameter) E in type MutableDirectedGraph<N, E>E, "directed">Referenced by 1 symbols