operator << method

Int8 operator <<(
  1. int shiftAmount
)

Left-shifts the integer's bits gracefully overflowing when passing the bit barrier.

Implementation

Int8 operator <<(int shiftAmount) => Int8.from(value << shiftAmount);