operator % method

Uint64 operator %(
  1. Uint64 other
)

Modulo remainder constraint matching natively bounded data models.

Implementation

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