import { OrderedMap } from "https://deno.land/x/rimbu@0.13.5/core/main/index.ts";
Interfaces
A mutable | |
A context instance for an | |
A non-empty type-invariant immutable Ordered Map of key type K, and value type V. In the Map, each key has exactly one value, and the Map cannot contain duplicate keys. See the Map documentation and the OrderedMap API documentation | |
Utility interface that provides higher-kinded types for this collection. |
import { type OrderedMap } from "https://deno.land/x/rimbu@0.13.5/core/main/index.ts";
A type-invariant immutable Ordered Map of key type K, and value type V. In the Map, each key has exactly one value, and the Map cannot contain duplicate keys. See the Map documentation and the OrderedMap API documentation
Examples
Example 1
Example 1
const m1 = OrderedHashMap.empty<number, string>()
const m2 = OrderedHashMap.of([1, 'a'], [2, 'b'])
import { OrderedMap } from "https://deno.land/x/rimbu@0.13.5/core/main/index.ts";