operator << abstract method

IntX operator <<(
  1. int shiftAmount
)

Left bit-shift operator.

Returns the result of shifting the bits of this integer by shiftAmount bits to the left. Low-order bits are filled with zeros.

Implementation

IntX operator <<(int shiftAmount);