List

MethodReturn typeDescription

List.get(index:Number)

Generic

Returns the element at the given index.

List.add(value:Generic)

None

To add the value to the list.

List.replace(index:Number, value:Generic)

None

Replaces the value at the given index.

List.remove(index:Number)

None

Removes from the list at a given index.

List.count()

Number

Returns the number of entries in the List

List.clear()

None

Clears all the entries in the List

Last updated