leq (less than or equal)
leq(a: Array<Number>|Number, b: Array<Number>|Number) -> Array<Boolean>Compares arrays a and b, and returns an array containing boolean values
that are true in places where the values from a <= b, and false otherwise.
At least 1 argument must be an array of some kind.