Description
Returns a empty List with no typ restriction.
Returns
data type description List A List object
A can store multiple values at once. A list can be restricted to a specific value typ.
Returns a empty List with no typ restriction.
data type description List A List object
Adds a new value to the list collection.
parameter data type description 0 Value The value which should be added to the list (can also be a String, Ident, Icon,..) Returns
data type description Result<()> Returns error when input was wrong
Gets an entry from the list
parameter data type description 0 Integer The position in the list we want the entry of Returns
data type description Option<Value> A Value which is the actual restriction
Replaces an entry at the defined position.
parameter data type description 0 Integer The index of the entry inside the list to replace 1 Any The new value to replace the old one with Returns
data type description Result<()> Returns error when input was wrong