operator >> method

I8 operator >>(
  1. int shiftAmount
)
override

Right shifts by shiftAmount bits.

Implementation

I8 operator >>(int shiftAmount) => I8((value >> shiftAmount).toSigned(8));