Skip to main content
Module

x/rimbu/mod.ts>OrderedMap.Types

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

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

Properties

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