Skip to main content
Module

x/rimbu/mod.ts>HashMultiMapSortedValue.Context

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

A context instance for an HashMultiMapSortedValue that acts as a factory for every instance of this type of collection.

Properties

readonly
typeTag: "HashMultiMapSortedValue"
readonly
keyMapContext: HashMap.Context<UK>

The HashMap context used to create HashMaps to the key to value maps.

readonly
keyMapValuesContext: SortedSet.Context<UV>

The SortedSet context used to create HashSets for the value sets.