Skip to main content
Module

x/rimbu/mod.ts>OrderedSortedMap.Types

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

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

Properties

readonly
normal: OrderedSortedMap<this["_K"], this["_V"]>
readonly
nonEmpty: OrderedSortedMap.NonEmpty<this["_K"], this["_V"]>
readonly
context: OrderedSortedMap.Context<this["_K"]>
readonly
builder: OrderedSortedMap.Builder<this["_K"], this["_V"]>
readonly
sourceContext: SortedMap.Context<this["_K"]>
readonly
sourceMap: SortedMap<this["_K"], this["_V"]>
readonly
sourceMapNonEmpty: SortedMap.NonEmpty<this["_K"], this["_V"]>