operator << method

Int32 operator <<(
  1. int n
)

Logical left shift (bits shifted out the top are discarded).

Implementation

Int32 operator <<(int n) {
  final shift = n & 31;
  return Int32._(_safeShl32(_bits, shift) & BinaryOps.mask32);
}