Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/rimbu/multimap/main/interface/hash-key/sorted-value/interface.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.1/multimap/main/interface/hash-key/sorted-value/interface.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"]>