operator % method

I8 operator %(
  1. I8 other
)
override

Modulo operator, wrapping around to remain within I8.

Implementation

I8 operator %(I8 other) => I8((value % other.value).toSigned(8));