Package: effect
Module: Graph
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">.
See
undirected for constructing undirected graphsDirectedGraph for graphs whose edges have source-to-target directionMutableUndirectedGraph for the mutable undirected graph typeSignature
type UndirectedGraph<N, E> = Graph<N, E, "undirected">
Since v3.18.0