import { HashTableHashColumn } from "https://deno.land/x/rimbu@0.13.5/core/mod.ts";
Interfaces
A non-empty type-invariant immutable Table of row key type R, column key type C, and value type V. In the Table, a combination of a row and column key has exactly one value. See the Table documentation and the HashTableHashColumn API documentation | |
Utility interface that provides higher-kinded types for this collection. |
import { type HashTableHashColumn } from "https://deno.land/x/rimbu@0.13.5/core/mod.ts";
A type-invariant immutable Table of row key type R, column key type C, and value type V. In the Table, a combination of a row and column key has exactly one value. See the Table documentation and the HashTableHashColumn API documentation
Examples
Example 1
Example 1
const t1 = HashTableHashColumn.empty<number, string, boolean>()
const t2 = HashTableHashColumn.of([1, 'a', true], [2, 'a', false])
import { HashTableHashColumn } from "https://deno.land/x/rimbu@0.13.5/core/mod.ts";