Returns true if equals to other values.
other
bool equalsValues(Int32x4 other) { var diff = this - other; return diff.x == 0 && diff.y == 0 && diff.z == 0 && diff.w == 0; }