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

x/rimbu/ordered/map-custom/index.ts>OrderedMapBase.Types

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

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

Properties

readonly
normal: OrderedMapBase<this["_K"], this["_V"]>
readonly
nonEmpty: OrderedMapBase.NonEmpty<this["_K"], this["_V"]>
readonly
context: OrderedMapBase.Context<this["_K"]>
readonly
builder: OrderedMapBase.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"]>
readonly
sourceBuilder: RMap.Builder<this["_K"], this["_V"]>