FutureProg functions
getindex
CollectionItem getindex(Void Collection collection, Number index)
Contexts: computer function, computer program, standard futureprog
This function returns the element at the specified index of a collection, or null if an incorrect index is specified. The return type depends on the return type of the collection. You may need to convert the result. See CONVERT function.
collection: A collection of anything
index: The zero-based index of the element you want to retrieve from the collection
Contexts: computer function, computer program, standard futureprog
This function returns the element at the specified index of a collection, or null if an incorrect index is specified. The return type depends on the return type of the collection. You may need to convert the result. See CONVERT function.
collection: A collection of anything
index: The zero-based index of the element you want to retrieve from the collection