operator << method

Uint64 operator <<(
  1. int shiftAmount
)

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

Implementation

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