rotr64 static method

Int64 rotr64(
  1. Int64 x,
  2. int rot
)

Implementation

static Int64 rotr64(final Int64 x, final int rot) {
  return x.shiftRightUnsigned(rot) | x << (64 - rot);
}