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
_rowMap
Definition
_rowMap?:
RMap.Builder
<R,
RMap.Builder
<C, V>>;
addEntries
undocumented
addEntries
Definition
addEntries: (source:
StreamSource
<readonly [R, C, V]>) => boolean;
buildMapValues
undocumented
buildMapValues
Definition
buildMapValues: <V2>(mapFun: (value: V, row: R, column: C) => V2) => any;
forEach
undocumented
forEach
Definition
forEach: (f: (entry: [R, C, V], index: number, halt: () => void) => void, options?: {
state?:
TraverseState
;
}) => void;
get
undocumented
get
hasValueAt
undocumented
hasValueAt
modifyAt
undocumented
modifyAt
remove
undocumented
remove
removeEntries
undocumented
removeEntries
Definition
removeEntries: <UR = R, UC = C>(entries:
StreamSource
<[
RelatedTo
<R, UR>,
RelatedTo
<C, UC>]>) => boolean;
removeRows
undocumented
removeRows
Definition
removeRows: <UR>(rows:
StreamSource
<
RelatedTo
<R, UR>>) => boolean;
rowMap
undocumented
rowMap
Definition
get rowMap():
RMap.Builder
<R,
RMap.Builder
<C, V>>;
source
undocumented
source
Definition
source?:
Table.NonEmpty
<R, C, V>
|
undefined;
updateAt
undocumented
updateAt