Package: effect
Module: Graph
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.
See
MutableDirectedGraph for mutable graphs with directed edgesUndirectedGraph for the immutable undirected graph typeMutableGraph for the generic mutable graph typeSignature
type MutableUndirectedGraph<N, E> = MutableGraph<N, E, "undirected">
Since v3.18.0