Wrapper on top of Lambda class with limited functionality.
Lambda
static has<A> (it:Iterable<A>, elt:A):Bool
Tells if it contains elt.
it
elt
This function returns true as soon as an element is found which is equal to elt according to the == operator.
==
If no such element is found, the result is false.