UInt128.RightShift(UInt128, Int32) 演算子

定義

値を特定の量だけ右にシフトします。

public:
 static UInt128 operator >>(UInt128 value, int shiftAmount) = System::Numerics::IShiftOperators<UInt128, int, UInt128>::op_RightShift;
public static UInt128 operator >> (UInt128 value, int shiftAmount);
static member ( >>> ) : UInt128 * int -> UInt128
Public Shared Operator >> (value As UInt128, shiftAmount As Integer) As UInt128

パラメーター

value
UInt128

によって shiftAmount右にシフトされる値。

shiftAmount
Int32

右にシフトされる量 value

戻り値

で右にシフトしたvalueshiftAmount結果。

実装

注釈

この操作は、符号付き型に対して符号付き (算術型と呼ばれる) 右シフトを実行することを目的とします。

適用対象