Skip to main content
Module

x/rimbu/mod.ts>ProximityMap.NonEmpty

Rimbu is a TypeScript library focused on immutable, performant, and type-safe collections and other tools.
Go to Latest
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/mod.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

const m1 = ProximityMap.empty<number, string>()
const m2 = ProximityMap.of([1, 'a'], [2, 'b'])

Methods

stream(): Stream.NonEmpty<readonly [K, V]>