Skip to main content
Module

x/rimbu/mod.ts>SortedMultiSet.Types

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

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

Properties

readonly
normal: SortedMultiSet<this["_T"]>
readonly
nonEmpty: SortedMultiSet.NonEmpty<this["_T"]>
readonly
context: SortedMultiSet.Context<this["_T"]>
readonly
builder: SortedMultiSet.Builder<this["_T"]>
readonly
countMap: SortedMap<this["_T"], number>
readonly
countMapNonEmpty: SortedMap.NonEmpty<this["_T"], number>
readonly
countMapContext: SortedMap.Context<this["_T"]>