operator ~ method

I8 operator ~()
override

Performs bitwise NOT.

Implementation

I8 operator ~() => I8((~value).toSigned(8));