Shifts the bits to the right, discarding bits on the right.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static BigInteger operator >>(
BigInteger value,
int shift
)
Public Shared Operator >> (
value As BigInteger,
shift As Integer
) As BigInteger
public:
static BigInteger operator >>(
BigInteger value,
int shift
)
static let inline (>>>)
value : BigInteger *
shift : int : BigInteger
Parameters
- value
- Type: Extreme.MathematicsBigInteger
The number to shift. - shift
- Type: SystemInt32
The number of bits to shift the number to the right.
Return Value
Type:
BigIntegerA
BigInteger which represents
value shifted
to the right by
shift bits.
Reference