import { ValuedGraphBase } from "https://deno.land/x/rimbu@0.13.5/graph/custom/valued/interface/generic/valued-graph-base.ts";
Interfaces
Utility interface that provides higher-kinded types for this collection. |
import { type ValuedGraphBase } from "https://deno.land/x/rimbu@0.13.5/graph/custom/valued/interface/generic/valued-graph-base.ts";
Properties
readonly
context: WithGraphValues<Tp, N, V>["context"]Returns the context
associated to this collection instance.
Methods
Returns a Map containing the nodes and connection values reachable from given node1
node as keys,
and their corresponding values.
Returns the graph where given nodes node1
and node2
are connected with
the given value
.
Returns the graph with the connection between given node1
and node2
modified according to given options
.
toBuilder(): WithGraphValues<Tp, N, V>["builder"]
Returns a builder object containing the entries of this collection.