iterator
..Root.algorithm.iterator
Provides functions that operate on ranges of elements, please note that in range [first, last) last is pointing at element behind range.
Object
import("algorithm");
auto a.=(Array());
a.pushBack("a", "b", "c");
auto b.=(Array(3));
algorithm.iterator.copy(a.begin(), a.end(), b.begin());
log(b);