BitShiftRight()

Namespace ›› System ›› MfBigInt ›› Methods ››
Parent Previous Next

BitShiftRight()

OutputVar := instance.BitShiftRight(value)

BitShiftRight(value)

Performs right shift operation current instance bits by value amount.

Parameters

value

The number of places to shift bits right.
Can var integer or any type that matches IsInteger.

Returns

If ReturnAsObject is true then returns current instance of MfUInt64 with an updated Value; Otherwise returns Value as var.

Throws

Throws MfNotSupportedException if Readonly is true.
Throws MfNullReferenceException if called as a static method
Throws MfArgumentNullException if value is null.
Throws MfException for any other errors during the operation.

Remarks

When binary bits are shifted right the shifted bits are disposed of and can not be retrieved.

Example

bigI := new MfBigInt("77444564454564646", true)
bigI.BitShiftRight(10)
MsgBox % bigI.Value ; 75629457475160

bigI := new MfBigInt(8, true)
bigI.BitShiftRight(4)
MsgBox % bigI.Value ; 0

bigI := MfBigInt.Parse("+10111111", 2) ; parse binary base 2
bigI.BitShiftRight(4)
; Display as binary base 2
MsgBox % bigI.ToString(2) ; 1011