secp256k1I128Rshift static method

void secp256k1I128Rshift(
  1. Secp256k1Int128 r,
  2. int n
)

Implementation

static void secp256k1I128Rshift(Secp256k1Int128 r, int n) {
  _cond(n < 128, "secp256k1I128Rshift");
  // r.r = (r.r >>= n).toSigned128;
  r.set(r.r >> n);
}