Easypt

end

..Root.Array.end

Returns an iterator pointing after the last element of this Array.

Child of:

Array

Signatures:

NativeCallable, Callable

Example:

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