List is a subclass of SequenceableCollection with unlimited growth in size. Although not a subclass of Array or its superclass ArrayedCollection it uses an Array in its implementation and is in many cases interchangeable with one. (List implements many of the same methods as Array.)
Arrays have a fixed maximum size. If you add beyond that size a new Array is created and returned, but you must use an assignment statement or the new array will be lost. (See the Array helpfile.) List has no size limitation and is thus more flexible, but has slightly more overhead.
Many of List's methods are inherited from SequenceableCollection or Collection and are documented in those helpfiles.
Creates a List with the initial capacity given by size.
Creates a List with the initial capacity given by size and slots filled with nil.
Creates a List by copying aList's array variable.
Creates a List using anArray.
Returns a new Array based upon this List.
Returns the List's Array, allowing it to be manipulated directly. This should only be necessary for exotic manipulations not implemented in List or its superclasses.
Sets the List's Array.
Return the item at index.
Same as -at, but values for index greater than the size of the List will be clipped to the last index.
Same as -at, but values for index greater than the size of the List will be wrapped around to 0.
Same as -at, but values for index greater than the size of the List will be folded back.
Put item at index, replacing what is there.
Same as -put, but values for index greater than the size of the List will be clipped to the last index.
Same as -put, but values for index greater than the size of the List will be wrapped around to 0.
Same as -put, but values for index greater than the size of the List will be folded back.
Adds an item to the end of the List.
Inserts the item at the beginning of the List.
Inserts the item into the contents of the List at the indicated index.
Remove and return the last element of the List.
Increase the size of the List by sizeIncrease number of slots.
Remove and return the element at index, shrinking the size of the List.
Inserts the item into the contents of the receiver, possibly returning a new collection.
Iterate over the elements in order, calling the function for each element. The function is passed two arguments, the element and an index.
Iterate over the elements in reverse order, calling the function for each element. The function is passed two arguments, the element and an index.
Calls function for each subsequent pair of elements in the List. The function is passed the two elements and an index.
Return a new List which is a copy of the indexed slots of the receiver from start to end.
Return a new List consisting of the values starting at first, then every step of the distance between first and second, up until last.
Put value at every index starting at first, then every step of the distance between first and second, up until last.
Return a new List whose elements are reversed.
Returns a new List whose elements have been scrambled. The receiver is unchanged.
Return a new List which is the receiver made into a palindrome. The receiver is unchanged.
Return a new List which is the receiver made into a palindrome with the last element removed. This is useful if the list will be repeated cyclically, the first element will not get played twice. The receiver is unchanged.
Return a new List which is the receiver concatenated with a reversal of itself. The center element is duplicated. The receiver is unchanged.
Return a new List whose elements are repeated n times. The receiver is unchanged.
dupEach
instead. This method is retained for backwards compatibility.
Return a new List whose elements are repeated n times. The receiver is unchanged.
Return a new List whose elements are in rotated order. Negative n values rotate left, positive n values rotate right. The receiver is unchanged.
Return a new List whose elements have been reordered via one of 10 "counting" algorithms. The algorithms are numbered 1 through 10. Run the examples to see the algorithms.
Returns a new List whose elements are interlaced sequences of the elements of the receiver's subcollections, up to size length. The receiver is unchanged.
Returns a new List whose elements are the nthPermutation of the elements of the receiver. The receiver is unchanged.
Returns a new List whose elements are repeated sequences of the receiver, up to size length. The receiver is unchanged.
Same as -wrapExtend but the sequences fold back on the list elements.
Return a new List whose elements are repeated subsequences from the receiver. Easier to demonstrate than explain.
Dump the List's Array.
Replace the List's Array with a new empty one.