* Resizes table so that it matches new_rows, new_cols. */
| 555 | * Resizes table so that it matches new_rows, new_cols. |
| 556 | */ |
| 557 | void CsvTable::resizeTable(table_index_t new_rows, table_index_t new_cols) { |
| 558 | storage.resize(new_rows, new_cols); |
| 559 | updateInternals(); |
| 560 | } |
| 561 | |
| 562 | |
| 563 | /** |