import { ProximityMap } from "https://deno.land/x/rimbu@1.0.0/proximity/mod.ts";
Interfaces
A mutable | |
A context instance for a | |
A non-empty type-invariant immutable 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 ProximityMap API documentation | |
Utility interface that provides higher-level types for this collection. |
import { type ProximityMap } from "https://deno.land/x/rimbu@1.0.0/proximity/mod.ts";
A type-invariant immutable 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 ProximityMap API documentation
Examples
Example 1
Example 1
const m1 = ProximityMap.empty<number, string>()
const m2 = ProximityMap.of([1, 'a'], [2, 'b'])
import { ProximityMap } from "https://deno.land/x/rimbu@1.0.0/proximity/mod.ts";