operator << method

Int64 operator <<(
  1. int n
)

Logical left shift (bits shifted out the top are discarded) — identical for signed and unsigned, delegates to Uint64.

Implementation

Int64 operator <<(int n) => Int64._(_bits << n);