interface EdgeGraph.NonEmpty
implements [EdgeGraphBase.NonEmpty]<N, EdgeGraph.Types>, Omit<EdgeGraph<N>, keyof EdgeGraphBase.NonEmpty<any, any>>, [Streamable.NonEmpty]<GraphElement<N>>
import { type EdgeGraph } from "https://deno.land/x/rimbu@0.13.5/graph/main/non-valued/interface/edge/edge-graph.ts";
const { NonEmpty } = EdgeGraph;
A non-empty type-invariant immutable edge (undirected) graph.
Methods
stream(): Stream.NonEmpty<GraphElement<N>>
Returns a non-empty Stream
containing all graph elements of this collection as single tuples for isolated nodes
and 2-valued tuples of nodes for connections.
See the Graph documentation and the EdgeGraph API documentation