<=
..Root.ArrayIterator.<=
Checks if this ArrayIterator
is pointing before or to the same element as another ArrayIterator
. This operation makes sense only if both iterators are pointing to the same Array
Parameters: another ArrayIterator
Return value: new Boolean
NativeCallable
, Callable
auto arr.=(Array());
arr.pushBack("abc", "def");
log(arr.begin().<=(arr.end()));