operator << method

Uint32 operator <<(
  1. int n
)

Implementation

Uint32 operator <<(int n) {
  final shift = n & 31;
  return Uint32._(_safeShl32(_value, shift) & _mask32);
}