| Methods |
Description |
| New |
Create a new empty list. |
| Index |
Retrieve an object from a list. |
| Set |
Store an object in a list at an arbitrary index. |
| Append |
Store an object at the end of a list. |
| Insert |
Inserts an object at an arbitrary position in a list. |
| Remove |
Removes an object from a list. |
| Swap |
Swaps two objects in a list. |
| First |
Returns the index of the first object in a list. |
| Next |
Returns the index of the next object in a list. |
| Length |
Returns the length of the list. |