shr

infix fun shr(n: Int): BigInteger

Returns a BigInteger whose value is (this >> n). Sign extension is performed. The shift distance, n, may be negative, in which case this method performs a left shift. (Computes floor(this / 2<sup>n</sup>).)

Return

this >> n

See also

.shl

Parameters

n

shift distance, in bits.