Skip to main content
Module

x/rimbu/mod.ts>HashMultiSet.Types

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

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

Properties

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