operator >>> method

Int32 operator >>>(
  1. int n
)

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

Implementation

Int32 operator >>>(int n) {
  final shift = n & 31;
  if (shift == 0) return this;
  return Int32._(
    (_bits >>> shift) & BinaryOps.mask32,
  ); // right shift only shrinks magnitude: safe
}