operator >> method

I16 operator >>(
  1. int shiftAmount
)
override

Right shifts by shiftAmount bits.

Implementation

I16 operator >>(int shiftAmount) => I16((value >> shiftAmount).toSigned(16));