Skip to main content
Module

x/rimbu/mod.ts>OrderedHashMap.Types

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

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

Properties

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