= (Array)

Checks if iterators point to the same entry.

Arguments

iterator0
and
iterator1
are the ArrayIterators to check.

Return values

condition
is TRUE if the iterators point to the same array entry, FALSE otherwise.

Complexity

Constant

Example

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