Description
Creates a new emtpy table.
Returns
data type description Table A Table object
A variable wich stores a table with multiple columns and rows.
Get a value from a row and column.
parameter data type description 0 Integer The row number 1 Ident The ident of the column Returns
data type description Option<Value> The value of the cell when found
Set a value into a row and column.
parameter data type description 0 Integer The row number 1 Ident The ident of the column 2 Value The value to set Returns
data type description Result<()> Returns error when input was wrong
Removes the given row.
parameter data type description 0 Integer The row number to delete