|
Developer`BitShiftRight
BitShiftRight[n, d] shifts the binary bits in the integer n to the right by d places, dropping bits that are shifted past the units position on the right.
BitShiftRight[n, d] is equivalent to IntegerPart[n/2^d].
Negative values of d shift to the left.
See also: MantissaExponent.
|