IComparisonOperators<TSelf,TOther,TResult> インターフェイス

定義

2 つの値を比較して相対順序を決定するメカニズムを定義します。

generic <typename TSelf, typename TOther, typename TResult>
 where TSelf : IComparisonOperators<TSelf, TOther, TResult>public interface class IComparisonOperators : System::Numerics::IEqualityOperators<TSelf, TOther, TResult>
public interface IComparisonOperators<TSelf,TOther,TResult> : System.Numerics.IEqualityOperators<TSelf,TOther,TResult> where TSelf : IComparisonOperators<TSelf,TOther,TResult>
type IComparisonOperators<'Self, 'Other, 'Result (requires 'Self :> IComparisonOperators<'Self, 'Other, 'Result>)> = interface
    interface IEqualityOperators<'Self, 'Other, 'Result (requires 'Self :> IComparisonOperators<'Self, 'Other, 'Result>)>
Public Interface IComparisonOperators(Of TSelf, TOther, TResult)
Implements IEqualityOperators(Of TSelf, TOther, TResult)

型パラメーター

TSelf

このインターフェイスを実装する型。

TOther

TSelf比較される型。

TResult

比較の結果として返される型。

派生
実装

演算子

GreaterThan(TSelf, TOther)

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

GreaterThanOrEqual(TSelf, TOther)

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

LessThan(TSelf, TOther)

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

LessThanOrEqual(TSelf, TOther)

2 つの値を比較して、次の値以下を決定します。

適用対象