Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/rimbu/core/menu/multiset.ts>Sorted.Types

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

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"]>