ISubtractionOperators<TSelf,TOther,TResult> Interfaz

Definición

Define un mecanismo para calcular la diferencia de dos valores.

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

Parámetros de tipo

TSelf

Tipo que implementa esta interfaz.

TOther

Tipo que se restará de TSelf.

TResult

Tipo que contiene el valor de TOther restado de TSelf.

Derivado

Operadores

Nombre Description
CheckedSubtraction(TSelf, TOther)

Resta dos valores para calcular su diferencia.

Subtraction(TSelf, TOther)

Resta dos valores para calcular su diferencia.

Se aplica a