class TableBuilder<R,C,V,Tp,TpR>
undocumented
Type parameters
| Name | Constraints | Default | Description |
|---|---|---|---|
| R | undocumented | ||
| C | undocumented | ||
| V | undocumented | ||
| Tp | ContextImplTypes | undocumented | |
| TpR | Tp & Row<R, C, V> | Tp & Row<R, C, V> | undocumented |
Properties
_rowMap
undocumented
_rowMapDefinition
_rowMap?: RMap.Builder<R, RMap.Builder<C, V>>;
addEntries
undocumented
addEntriesDefinition
addEntries: (source: StreamSource<readonly [R, C, V]>) => boolean;
buildMapValues
undocumented
buildMapValuesDefinition
buildMapValues: <V2>(mapFun: (value: V, row: R, column: C) => V2) => any;
forEach
undocumented
forEachDefinition
forEach: (f: (entry: [R, C, V], index: number, halt: () => void) => void, options?: {
state?: TraverseState;
}) => void;
get
undocumented
gethasValueAt
undocumented
hasValueAtmodifyAt
undocumented
modifyAtremove
undocumented
removeremoveEntries
undocumented
removeEntriesDefinition
removeEntries: <UR = R, UC = C>(entries: StreamSource<[RelatedTo<R, UR>, RelatedTo<C, UC>]>) => boolean;
removeRows
undocumented
removeRowsDefinition
removeRows: <UR>(rows: StreamSource<RelatedTo<R, UR>>) => boolean;
rowMap
undocumented
rowMapDefinition
get rowMap(): RMap.Builder<R, RMap.Builder<C, V>>;
updateAt
undocumented
updateAt