IDivisionOperators<TSelf,TOther,TResult> 接口

定义

定义用于计算两个值的商的机制。

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

类型参数

TSelf

实现此接口的类型。

TOther

将除以 TSelf的类型。

TResult

包含 和 TOther的商的类型TSelf

派生

运算符

CheckedDivision(TSelf, TOther)

将两个值相除以计算其商。

Division(TSelf, TOther)

将一个值除以另一个值以计算其商。

适用于