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

x/rimbu/core/menu/map/index.ts>Ordered.Sorted.Types

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

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