Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

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

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

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

Properties

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