operator * method

Int32x4 operator *(
  1. Int32x4 other
)

Implementation

Int32x4 operator *(Int32x4 other) =>
    Int32x4(x * other.x, y * other.y, z * other.z, w * other.w);