operator % method

Uint32 operator %(
  1. Uint32 other
)

Modulo remainder constraint matching natively bounded data models.

Implementation

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