Skip to main content
Module

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

Rimbu is a TypeScript library focused on immutable, performant, and type-safe collections and other tools.
Go to Latest
namespace OrderedMapBase
Re-export
import { OrderedMapBase } from "https://deno.land/x/rimbu@1.1.0/ordered/map-custom/index.ts";

Interfaces

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

interface OrderedMapBase
implements RMapBase<K, V, Tp>
Re-export
import { type OrderedMapBase } from "https://deno.land/x/rimbu@1.1.0/ordered/map-custom/index.ts";

Properties

readonly
keyOrder: List<K>

Returns a List instance containing the key order of the Map.

readonly
sourceMap: WithKeyValue<Tp, K, V>["sourceMap"]

Returns the contained Map instance.