eq (equals)
eq(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 1 argument must be an array of some kind.