UInt128.GreaterThanOrEqual(UInt128, UInt128) 演算子

定義

2 つの値を比較して、どちらが大きいか等しいかを判断します。

public:
 static bool operator >=(UInt128 left, UInt128 right) = System::Numerics::IComparisonOperators<UInt128, UInt128, bool>::op_GreaterThanOrEqual;
public static bool operator >= (UInt128 left, UInt128 right);
static member ( >= ) : UInt128 * UInt128 -> bool
Public Shared Operator >= (left As UInt128, right As UInt128) As Boolean

パラメーター

left
UInt128

right比較する値。

right
UInt128

left比較する値。

戻り値

leftright 以上の場合は true。それ以外の場合は false

実装

適用対象