interface ProximityMap.NonEmpty
implements [RMapBase.NonEmpty]<K, V, ProximityMap.Types>, Omit<ProximityMap<K, V>, keyof RMapBase.NonEmpty<any, any, any>>, [Streamable.NonEmpty]<readonly [K, V]>
import { type ProximityMap } from "https://deno.land/x/rimbu@1.0.0/proximity/main/index.ts";
const { NonEmpty } = ProximityMap;
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
Examples
Example 1
Example 1
const m1 = ProximityMap.empty<number, string>()
const m2 = ProximityMap.of([1, 'a'], [2, 'b'])