operator ~ method

I16 operator ~()
override

Performs bitwise NOT.

Implementation

I16 operator ~() => I16((~value).toSigned(16));