Skip to main content
Module

x/rimbu/mod.ts>SortedMultiMapHashValue.Types

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

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

Properties

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