operator >> method

Int8 operator >>(
  1. int shiftAmount
)

Right-shifts the numerical data maintaining standard sign retention.

Implementation

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