Test additional content header

NumberSubtraction Operator

Subtracts two values to compute their difference.

Definition

Namespace: Fluent.Calculations.Primitives.BaseTypes
Assembly: Fluent.Calculations.Primitives (in Fluent.Calculations.Primitives.dll) Version: 1.1.0-aplha
public static Number operator -(
	Number left,
	Number right
)

Parameters

left  Number
The value from which right is subtracted.
right  Number
The value which is subtracted from left.

Return Value

Number
The difference of right subtracted from left.

Implements

ISubtractionOperatorsTSelf, TOther, TResultSubtraction(TSelf, TOther)

Remarks

The Subtract method defines the operation of the substraction operator for Number values.

See Also