Skip to main content
Module

x/rimbu/multimap/custom/index.ts>MultiMapBase.Types

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

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

Properties

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