Easypt

get

..Root.ArrayIterator.get

Gets reference to element pointed by iterator.

Child of:

ArrayIterator

Signatures:

NativeCallable, Callable

Example:

auto arr.=(Array());
arr.pushBack("abc", "def");
for (auto it.=(arr.begin()).!=, arr.end(), it.++, {
    log(it.get());
});