table append blank rows
This function adds a specified number of blank rows to the end of the table
Indirect parameter passing is disabled
2
No. | Type | Description |
---|---|---|
1 input |
string | name of new or existing table Table must be existing when using table append... functions. Otherwise, it does not matter. |
2 input |
numeral | Number of rows to append The rows added are entirely blank, i.e. 0 columns per row.. |
table initialize( animals, { { Animal, size }, { ant, tiny }, { mouse, small } } );
table append blank rows( animals, 2 );
table append( animals,
{ { rat, not that small }, { horse, big } } );
table list ( animals );
0 : Animal | size
1 : ant | tiny
2 : mouse | small
3 : |
4 : |
5 : rat | not that small
6 : horse | big