_lessThan
Is the first parameter less than the second? --
Function
_lessThan(EXP1, EXP2) -> YES OR NO
_lessThan produces Yes iff the value in the first expression is less than the second. The definition
of "less than" is type-dependent, but by and large is similar to < in most programming languages.
Alternate version:
VALUE -> _lessThan(EXP) -> YES OR NO
This receives a VALUE, and tells you whether it is less than the given EXP.
If you provide more than one value on either side, it will do all of the comparisons, and
return all of the results. So for example, if you say:
<2, 3, 4, 5, 6> -> _lessThan(4)
the result will be true true false false false
.