shl

infix fun shl(n: Int): BigInteger

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

Return

this << n

See also

.shr

Parameters

n

shift distance, in bits.