begin
..Root.Array.begin
Returns an iterator pointing to the first 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());
});