Skip to main content
Module

x/rimbu/graph/custom/index.ts>GraphBase.Types

Rimbu is a TypeScript library focused on immutable, performant, and type-safe collections and other tools.
Go to Latest
interface GraphBase.Types
implements [VariantGraphBase.Types]
import { type GraphBase } from "https://deno.land/x/rimbu@0.14.0/graph/custom/index.ts";
const { Types } = GraphBase;

Utility interface that provides higher-kinded types for this collection.

Properties

readonly
normal: GraphBase<this["_N"]>
readonly
nonEmpty: GraphBase.NonEmpty<this["_N"]>
readonly
context: GraphBase.Context<this["_N"]>
readonly
builder: GraphBase.Builder<this["_N"]>
readonly
linkMap: RMap<this["_N"], RSet<this["_N"]>>
readonly
linkMapNonEmpty: RMap.NonEmpty<this["_N"], RSet<this["_N"]>>
readonly
linkMapContext: RMap.Context<this["_N"]>
readonly
linkConnectionsContext: RSet.Context<this["_N"]>
readonly
linkMapBuilder: RMap.Builder<this["_N"], RSet.Builder<this["_N"]>>
readonly
linkConnectionsBuilder: RSet.Builder<this["_N"]>
readonly
linkConnections: RSet<this["_N"]>