Skip to main content
Module

x/rimbu/bimultimap/custom/index.ts>BiMultiMapBase.Types

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

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

Properties

readonly
context: BiMultiMapBase.Context<this["_K"], this["_V"]>

The collection context type (higher-kinded type).

readonly
normal: BiMultiMapBase<this["_K"], this["_V"]>

The 'normal' collection type (higher-kinded type).

readonly
nonEmpty: BiMultiMapBase.NonEmpty<this["_K"], this["_V"]>

The 'non-empty' collection type (higher-kinded type).

readonly
builder: BiMultiMapBase.Builder<this["_K"], this["_V"]>

The 'builder' collection type (higher-kinded type).

readonly
keyValueMultiMapContext: MultiMap.Context<this["_K"], this["_V"]>

The key to value multimap context type (higher-kinded type).

readonly
valueKeyMultiMapContext: MultiMap.Context<this["_V"], this["_K"]>

The value to key multimap context type (higher-kinded type).

readonly
keyValueMultiMap: MultiMap<this["_K"], this["_V"]>

The key to value multimap type (higher-kinded type).

readonly
valueKeyMultiMap: MultiMap<this["_V"], this["_K"]>

The value to key multimap type (higher-kinded type).

readonly
keyValueMultiMapNonEmpty: MultiMap.NonEmpty<this["_K"], this["_V"]>

The non-empty key to value multimap type (higher-kinded type).

readonly
valueKeyMultiMapNonEmpty: MultiMap.NonEmpty<this["_V"], this["_K"]>

The non-empty value to key multimap type (higher-kinded type).

readonly
keyMultiMapValues: RSet<this["_V"]>

The value set collection type (higher-kinded type).

readonly
valueMultiMapValues: RSet<this["_K"]>

The key set collection type (higher-kinded type).