NEXT v11
NEXT
is a method that returns the subscript that follows a specified subscript. The method takes a single argument; the subscript
that you are testing for.
collection
is the name of the collection.
If the specified subscript is less than the first subscript in the collection, the function returns the first subscript. If the subscript does not have a successor, NEXT
returns NULL
. If you specify a NULL
subscript, PRIOR
does not return a value.
The following example demonstrates using NEXT
to return the subscript that follows subscript 10
in the associative array, sparse_arr: