Easypt

apply

..Root.apply

Invoke the callable object f with elements of arr as arguments and p as its parent.

Child of:

Root

Signatures:

NativeCallable, Callable

Example:

auto arr.=(Array());
arr.pushBack(1);
arr.pushBack(2);
apply(Root, log, arr);

Equivalent of Root.log(1, 2);.