import { HashMultiMapSortedValue } 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 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 HashMultiMapSortedValue API documentation | |
Utility interface that provides higher-kinded types for this collection. |
import { type HashMultiMapSortedValue } from "https://deno.land/x/rimbu@0.13.5/core/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 HashMultiMapSortedValue API documentation
Examples
Example 1
Example 1
const m1 = HashMultiMapSortedValue.empty<number, string>()
const m2 = HashMultiMapSortedValue.of([1, 'a'], [1, 'b'], [2, 'a'])
import { HashMultiMapSortedValue } from "https://deno.land/x/rimbu@0.13.5/core/main/index.ts";