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