shiftRightBy51 method

BigInt shiftRightBy51()

shiftRightBy51 returns a >> 51. a is assumed to be at most 115 bits.

Implementation

BigInt shiftRightBy51() {
  return (high << (64 - 51)) | (low >> 51);
}