end
..Root.Array.end
Returns an iterator pointing after the last element of this Array
.
ArrayIterator
NativeCallable
, Callable
auto arr.=(Array());
arr.pushBack(1, 7, 3.14, "abc", "def");
for (auto it.=(arr.begin()).!=, arr.end(), it.++, {
log(it.get());
});