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

定義

2 つの値の合計を計算するメカニズムを定義します。

generic <typename TSelf, typename TOther, typename TResult>
 where TSelf : IAdditionOperators<TSelf, TOther, TResult>public interface class IAdditionOperators
public interface IAdditionOperators<TSelf,TOther,TResult> where TSelf : IAdditionOperators<TSelf,TOther,TResult>
type IAdditionOperators<'Self, 'Other, 'Result (requires 'Self :> IAdditionOperators<'Self, 'Other, 'Result>)> = interface
Public Interface IAdditionOperators(Of TSelf, TOther, TResult)

型パラメーター

TSelf

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

TOther

TSelf追加される型。

TResult

TOtherの合計TSelfを含む型。

派生

演算子

Addition(TSelf, TOther)

合計を計算するために 2 つの値を加算します。

CheckedAddition(TSelf, TOther)

合計を計算するために 2 つの値を加算します。

適用対象