operator >> method

Int16 operator >>(
  1. int shiftAmount
)

Right-shifts the numerical data maintaining standard sign retention.

Implementation

Int16 operator >>(int shiftAmount) => Int16.from(value >> shiftAmount);