import { type VariantTableBase } from "https://deno.land/x/rimbu@0.13.1/table/custom/interface/base.ts";
const { NonEmpty } = VariantTableBase;
Methods
Returns this collection typed as a 'possibly empty' collection.
Returns a non-empty Stream containing all entries of this collection as tuples of row key, column key, and value.
streamRows(): Stream.NonEmpty<R>
Returns a non-empty Stream containing all row keys of this collection.
streamValues(): Stream.NonEmpty<V>
Returns a non-empty Stream containing all values of this collection.
Returns a non-empty collection with the same row and column keys, but where the given mapFun
function is applied to each entry value.
toArray(): ArrayNonEmpty<[R, C, V]>
Returns a non-empty array containing all entries in this collection.