Skip to main content
Module

x/rimbu/mod.ts>SortedTableSortedColumn.NonEmpty

Rimbu is a TypeScript library focused on immutable, performant, and type-safe collections and other tools.
Go to Latest
interface SortedTableSortedColumn.NonEmpty
implements [TableBase.NonEmpty]<R, C, V, SortedTableSortedColumn.Types>, Omit<SortedTableSortedColumn<R, C, V>, keyof TableBase.NonEmpty<any, any, any, any>>, [Streamable.NonEmpty]<[R, C, V]>
import { type SortedTableSortedColumn } from "https://deno.land/x/rimbu@0.13.1/mod.ts";
const { NonEmpty } = SortedTableSortedColumn;

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 SortedTableSortedColumn API documentation

Examples

Example 1

const t1 = SortedTableSortedColumn.empty<number, string, boolean>()
const t2 = SortedTableSortedColumn.of([1, 'a', true], [2, 'a', false])