equalsValues method

bool equalsValues(
  1. Int32x4 other
)

Returns true if equals to other values.

Implementation

bool equalsValues(Int32x4 other) {
  var diff = this - other;
  return diff.x == 0 && diff.y == 0 && diff.z == 0 && diff.w == 0;
}