unsignedShiftRight method

Int64 unsignedShiftRight(
  1. int n
)

Logical (unsigned) right shift — top bits filled with zero regardless of sign.

Implementation

Int64 unsignedShiftRight(int n) => Int64._(_bits >> n);