Skip to main content

interface SortedTableHashColumn.NonEmpty<R,C,V>

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.

Extends: Streamable.NonEmpty<T>, SortedTableHashColumn<R,C,V>

Type parameters

NameDescription
Rthe row key type
Cthe column key type
Vthe value type
note
example
const t1 = SortedTableHashColumn.empty<number, string, boolean>()
const t2 = SortedTableHashColumn.of([1, 'a', true], [2, 'a', false])

Methods

stream

Returns a non-empty Stream of the elements in this collection.

Definition

stream(): Stream.NonEmpty<T>;

Overrides

NonEmpty.stream