Skip to main content
Module

x/rimbu/mod.ts>HashMultiMapHashValue.Types

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

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

Properties

readonly
normal: HashMultiMapHashValue<this["_K"], this["_V"]>
readonly
nonEmpty: HashMultiMapHashValue.NonEmpty<this["_K"], this["_V"]>
readonly
context: HashMultiMapHashValue.Context<this["_K"], this["_V"]>
readonly
builder: HashMultiMapHashValue.Builder<this["_K"], this["_V"]>
readonly
keyMap: HashMap<this["_K"], HashSet.NonEmpty<this["_V"]>>
readonly
keyMapNonEmpty: HashMap.NonEmpty<this["_K"], HashSet.NonEmpty<this["_V"]>>
readonly
keyMapContext: HashMap.Context<this["_K"]>
readonly
keyMapValuesContext: HashSet.Context<this["_V"]>
readonly
keyMapValues: HashSet<this["_V"]>
readonly
keyMapValuesNonEmpty: HashSet.NonEmpty<this["_V"]>