interface TableCreators
undocumented
Methods
createContext
Returns a new Table context instance based on the given options.
createContextoptions.Definition
createContext<UR, UC>(options: {
    rowContext: RMap.Context<UR>;
    columnContext: RMap.Context<UC>;
  }): Table.Context<UR, UC>;
Type parameters
| Name | Description | 
|---|---|
| UR | the upper row key type for which the context can create instances | 
| UC | the upper column key type for which the context can create instances | 
Parameters
| Name | Type | Description | 
|---|---|---|
| options | {rowContext: RMap.Context<UR>;columnContext: RMap.Context<UC>;} | an object containing the following properties: - rowContext: the map context to use to map row keys to columns - columnContext: the map context to use to map column keys to values |