operator * method

Uint32 operator *(
  1. Uint32 other
)

Multiplication mathematically clipped naturally to standard hardware constraints.

Implementation

Uint32 operator *(Uint32 other) => Uint32.from(value * other.value);