A List
is a list/selection of 0 or more values.
The values can be of any type, even other Lists if you so wish.
A list can also be initialized with a list of values
List
is just a class as any other, and can be initialized with new
keyword if you want to.
A range is syntatic sugar for initializing a list. This is done with the ..
(exclusive) and ...
(inclusive) operators.
Ranges only works when both the start and end value are Number
s.
List.Push(Type ... )
Add items to the end of the list
List.Pop() Type
Remove items form the end of the list, and return that value.
Note: If the list is empty, an exception will be thrown.
Map.At(Number) Value
Note: If there is no item at that position an exception will be thrown.
Map.Size() Value