Skip to main content
Module

x/rimbu/mod.ts>SortedBiMultiMap.Types

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

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

Properties

readonly
context: SortedBiMultiMap.Context<this["_K"], this["_V"]>
readonly
normal: SortedBiMultiMap<this["_K"], this["_V"]>
readonly
nonEmpty: SortedBiMultiMap.NonEmpty<this["_K"], this["_V"]>
readonly
builder: SortedBiMultiMap.Builder<this["_K"], this["_V"]>
readonly
keyValueMultiMapContext: SortedMultiMapSortedValue.Context<this["_K"], this["_V"]>
readonly
valueKeyMultiMapContext: SortedMultiMapSortedValue.Context<this["_V"], this["_K"]>
readonly
keyValueMultiMap: SortedMultiMapSortedValue<this["_K"], this["_V"]>
readonly
valueKeyMultiMap: SortedMultiMapSortedValue<this["_V"], this["_K"]>
readonly
keyValueMultiMapNonEmpty: SortedMultiMapSortedValue.NonEmpty<this["_K"], this["_V"]>
readonly
valueKeyMultiMapNonEmpty: SortedMultiMapSortedValue.NonEmpty<this["_V"], this["_K"]>
readonly
keyMultiMapValues: SortedSet<this["_V"]>
readonly
valueMultiMapValues: SortedSet<this["_K"]>