UInt128RightShift Operator
            Returns the unsigned 128-bit binary integer obtained
            by shifting all bits right by the given number of places.
            
Namespace: Meta.Numerics.ExtendedAssembly: Meta.Numerics (in Meta.Numerics.dll) Version: 4.2.0+6d77d64445f7d5d91b12e331399c4362ecb25333
public static UInt128 operator >>(
	UInt128 u,
	int n
)
Public Shared Operator >> ( 
	u As UInt128,
	n As Integer
) As UInt128
public:
static UInt128 operator >>(
	UInt128 u, 
	int n
)
static let inline (>>>)
        u : UInt128 * 
        n : int  : UInt128
- u  UInt128
 - The integer to be shifted.
 - n  Int32
 - The number of places to shift.
 
UInt128The shifted integer.