operator >> method

Int64 operator >>(
  1. int shiftAmount
)

Right-shifts the numerical data maintaining standard sign retention.

Implementation

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