@rimbu/table
Version:
Immutable spreadsheet-like data structures containing row keys, column keys, and cell values
63 lines (62 loc) • 3.62 kB
text/typescript
import { SortedMap } from '@rimbu/sorted/map';
import type { Streamable } from '@rimbu/stream';
import { type SortedTableSortedColumnCreators, type TableBase } from '@rimbu/table/custom';
/**
* 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](https://rimbu.org/docs/collections/table) and the [SortedTableSortedColumn API documentation](https://rimbu.org/api/rimbu/table/sorted-row/SortedTableSortedColumn/interface)
* @note
* - The SortedTableSortedColumn uses a SortedhMap to map row keys to column.
* - The SortedTableSortedColumn uses SortedMaps to map column keys to values.
* @typeparam R - the row key type
* @typeparam C - the column key type
* @typeparam V - the value type
* @example
* ```ts
* const t1 = SortedTableSortedColumn.empty<number, string, boolean>()
* const t2 = SortedTableSortedColumn.of([1, 'a', true], [2, 'a', false])
* ```
*/
export interface SortedTableSortedColumn<R, C, V> extends TableBase<R, C, V, SortedTableSortedColumn.Types> {
}
export declare namespace 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](https://rimbu.org/docs/collections/table) and the [SortedTableSortedColumn API documentation](https://rimbu.org/api/rimbu/table/sorted-row/SortedTableSortedColumn/interface)
* @note
* - The SortedTableSortedColumn uses a SortedMap to map row keys to column.
* - The SortedTableSortedColumn uses SortedMaps to map column keys to values.
* @typeparam R - the row key type
* @typeparam C - the column key type
* @typeparam V - the value type
* @example
* ```ts
* const t1 = SortedTableSortedColumn.empty<number, string, boolean>()
* const t2 = SortedTableSortedColumn.of([1, 'a', true], [2, 'a', false])
* ```
*/
interface NonEmpty<R, C, V> extends TableBase.NonEmpty<R, C, V, SortedTableSortedColumn.Types>, Omit<SortedTableSortedColumn<R, C, V>, keyof TableBase.NonEmpty<any, any, any, any>>, Streamable.NonEmpty<[R, C, V]> {
}
interface Context<UR, UC> extends TableBase.Context<UR, UC, SortedTableSortedColumn.Types> {
readonly typeTag: 'SortedTableSortedColumn';
}
interface Builder<R, C, V> extends TableBase.Builder<R, C, V, SortedTableSortedColumn.Types> {
}
/**
* Utility interface that provides higher-kinded types for this collection.
*/
interface Types extends TableBase.Types {
readonly normal: SortedTableSortedColumn<this['_R'], this['_C'], this['_V']>;
readonly nonEmpty: SortedTableSortedColumn.NonEmpty<this['_R'], this['_C'], this['_V']>;
readonly row: SortedMap<this['_C'], this['_V']>;
readonly rowNonEmpty: SortedMap.NonEmpty<this['_C'], this['_V']>;
readonly rowMap: SortedMap<this['_R'], SortedMap.NonEmpty<this['_C'], this['_V']>>;
readonly rowMapNonEmpty: SortedMap.NonEmpty<this['_R'], SortedMap.NonEmpty<this['_C'], this['_V']>>;
readonly context: SortedTableSortedColumn.Context<this['_R'], this['_C']>;
readonly builder: SortedTableSortedColumn.Builder<this['_R'], this['_C'], this['_V']>;
readonly rowContext: SortedMap.Context<this['_R']>;
readonly columnContext: SortedMap.Context<this['_C']>;
}
}
export declare const SortedTableSortedColumn: SortedTableSortedColumnCreators;