Easypt

algorithm

..Root.algorithm

Child of:

Root

Signatures:

Object, Callable, BlockCallable

Members:

Example:

import("algorithm");

auto a.=(Array());
a.pushBack("w", "a", "z", "f", "c", "d");
algorithm.iterator.sort(a.begin(), a.end(), {
    return(args[0].get().>(args[1].get()));
});
log(a);