import { EdgeValuedGraphSorted } from "https://deno.land/x/rimbu@0.13.5/core/mod.ts";
Interfaces
A mutable | |
The EdgeValuedGraphSorted's Context instance that serves as a factory for all related immutable instances and builders. | |
A non-empty type-invariant immutable valued edge (undirected) graph. The nodes are internally maintained using SortedMaps See the Graph documentation and the EdgeValuedGraphSorted API documentation | |
Utility interface that provides higher-kinded types for this collection. |
import { type EdgeValuedGraphSorted } from "https://deno.land/x/rimbu@0.13.5/core/mod.ts";
An type-invariant immutable valued edge (undirected) graph. The nodes are internally maintained using SortedMaps See the Graph documentation and the EdgeValuedGraphSorted API documentation
Examples
Example 1
Example 1
const g1 = EdgeValuedGraphSorted.empty<number, string>()
const g2 = EdgeValuedGraphSorted.of([1], [2, 3, 'a'], [2, 4, 'b'])
import { EdgeValuedGraphSorted } from "https://deno.land/x/rimbu@0.13.5/core/mod.ts";