IDivisionOperations<T, TClosure>.Divide Method

Divides a value by another.

Definition

Namespace: Extreme.Mathematics.Generic
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
TClosure Divide(
	T a,
	T b
)

Parameters

a  T
The dividend.
b  T
The divisor.

Return Value

TClosure
a divided by b.

Remarks

Unlike integer division, this method is 'exact' in the sense that it is the inverse operation of multiplication.

See Also