forEach..Root.algorithm.forEachCalls function sequentially with elements in the container as argument.
Parameters: Container container, Callable function
Return value: reference to value of container.end()
Object, Callable, BlockCallable
import("algorithm");
auto a.=(Array());
a.pushBack("w", "a", "z", "f", "c", "d");
algorithm.forEach(a, log);