Skip to main content
Module

x/rimbu/mod.ts>SortedMultiMapHashValue.Context

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

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

Properties

readonly
typeTag: "SortedMultiMapHashValue"
readonly
keyMapContext: SortedMap.Context<UK>

The SortedMap context used to create SortedMaps to the key to value maps.

readonly
keyMapValuesContext: HashSet.Context<UV>

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