Array is a possibly sparse collection
with indexes that are positive whole numbers.
You can reference Array items by using one or more indexes.
The number of indexes is the same as the number of dimensions of the Array.
This number is called the dimensionality of the Array.
| Object | ||
| Methods inherited from the Object class | ||
| Class (Metaclass) | ||
| Methods inherited from the Class class | ||
| + Collection (Mixin Class) | ||
| Methods inherited from the Collection class | ||
| + OrderedCollection (Mixin Class) | ||
|
Methods inherited from the OrderedCollection class
| ||
| Array | ||
|
x = myarray[1,2,3] -- retrieves an item from a &multidimarray;
index = .array~of(1,2,3) -- create an index list
x = myarray[index] -- also retrieves from "1,2,3"