Skip to main content
Module

x/rimbu/mod.ts>HashBiMultiMap.Types

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

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

Properties

readonly
context: HashBiMultiMap.Context<this["_K"], this["_V"]>
readonly
normal: HashBiMultiMap<this["_K"], this["_V"]>
readonly
nonEmpty: HashBiMultiMap.NonEmpty<this["_K"], this["_V"]>
readonly
builder: HashBiMultiMap.Builder<this["_K"], this["_V"]>
readonly
keyValueMultiMap: HashMultiMapHashValue<this["_K"], this["_V"]>
readonly
valueKeyMultiMap: HashMultiMapHashValue<this["_V"], this["_K"]>
readonly
keyMultiMapValues: HashSet<this["_V"]>
readonly
valueMultiMapValues: HashSet<this["_K"]>