Package: effect
Module: Graph
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.
See
MutableGraph for the generic mutable graph typeDirectedGraph for the immutable directed graph typeMutableUndirectedGraph for mutable graphs without edge directionSignature
type MutableDirectedGraph<N, E> = MutableGraph<N, E, "directed">
Since v3.18.0