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