Skip to main content
Module

x/rimbu/mod.ts>HashMultiMapSortedValue.Types

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

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

Properties

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