> (Array)

Checks if the first iterator points to an entry with a greater index than the second.

Arguments

iterator0
and
iterator1
are the ArrayIterators to compare.

Return values

condition
is TRUE if
iterator0
points to an entry with a greater index, FALSE otherwise.

Complexity

Constant

Example

"sl/array" useFile a: (-1 2 3 5 6 "7") makeArray; a.firstIter a.lastIter > print
Output:
FALSE