>
..Root.ArrayIterator.>
Checks if this ArrayIterator
is pointing after 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()));