effect-io-ai

Package: effect
Module: Graph

Graph.UndirectedGraph

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

Signature

type UndirectedGraph<N, E> = Graph<N, E, "undirected">

Source

Since v3.18.0