Table of Contents






Table

A variable wich stores a table with multiple columns and rows.

Description

Creates a new emtpy table.

Returns
data type description
Table A Table object
Description

Get a value from a row and column.

Parameters
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
Description

Set a value into a row and column.

Parameters
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
Description

Removes the given row.

Parameters
parameter data type description
0 Integer The row number to delete
Description

Removes all rows and columns

Description

Returns the amount of columns inside the table.

Returns
data type description
Integer The number of columns
Description

Returns true, when there are no entries inside the table.

Returns
data type description
bool Is the table empty?