Easypt

<=

..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

Child of:

ArrayIterator

Signatures:

NativeCallable, Callable

Example:

auto arr.=(Array());
arr.pushBack("abc", "def");
log(arr.begin().<=(arr.end()));