The Lambda class is a collection of methods to support functional programming. It is ideally used with using Lambda and then acts as an extension to Iterable types.

On static platforms, working with the Iterable structure might be slower than performing the operations directly on known types, such as Array and List.

If the first argument to any of the methods is null, the result is unspecified.

See:

Static methods

staticexists<A> (it:Iterable<A>, f:A ‑> Bool):Bool

Tells if it contains an element for which f is true.

This function returns true as soon as an element is found for which a call to f returns true.

If no such element is found, the result is false.

If f is null, the result is unspecified.

staticfilter<A> (it:Iterable<A>, f:A ‑> Bool):List<A>

Returns a List containing those elements of it for which f returned true.

If it is empty, the result is the empty List even if f is null.

Otherwise if f is null, the result is unspecified.