neq (not equal)
neq(a: Array<Number>|Array<Boolean>|Number|Boolean, b: Array<Number>|Array<Boolean>|Number|Boolean) -> 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 one argument must be an array of some kind.