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