Easypt

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.

Child of:

algorithm

Signatures:

Object

Members:

Example:

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);