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