operator * method

Uint16 operator *(
  1. Uint16 other
)

Multiplication mathematically clipped naturally to standard hardware constraints.

Implementation

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