Skip to main content
Module

x/rimbu/mod.ts>MultiSet.Types

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

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

Properties

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