< (Array)

Checks if the first iterator points to an entry with a smaller 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 smaller index, FALSE otherwise.

Complexity

Constant

Example

"sl/array" useFile a: (-1 2 3 5 6 "7") makeArray; a.firstIter dup 2 + < print
Output:
TRUE