ISubtractionOperators<TSelf,TOther,TResult>.Subtraction Operator

Definition

Subtracts two values to compute their difference.

public:
 static TResult operator -(TSelf left, TOther right);
public static abstract TResult operator - (TSelf left, TOther right);
static member ( - ) : 'Self * 'Other -> 'Result
Public Shared Operator - (left As TSelf, right As TOther) As TResult

Parameters

left
TSelf

The value from which right is subtracted.

right
TOther

The value which is subtracted from left.

Returns

TResult

The value of right subtracted from left.

Applies to