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

定義

2 つの値の剰余または剰余を計算するメカニズムを定義します。

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

型パラメーター

TSelf

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

TOther

を除算 TSelfする型。

TResult

および TOtherの剰余または剰余をTSelf含む型。

派生

注釈

この型は C# の演算子を % 表します。これは剰余の計算によく使用されます。 インターフェイスを実装する型によって、実際の剰余演算とは異なる場合があります。

演算子

Modulus(TSelf, TOther)

2 つの値を一緒に除算して、その剰余または剰余を計算します。

適用対象