effect-io-ai

Package: effect
Module: Graph

Graph.Graph

Immutable graph interface.

When to use

Use as the immutable graph model for code that queries, traverses, transforms, or analyzes graph structure without mutating it.

See

Signature

export interface Graph<out N, out E, T extends Kind = "directed"> extends Proto<N, E> {
  readonly type: T
  readonly mutable: false
}

Source

Since v3.18.0