BigFloat.Modulus Operator

Returns the remainder after dividing one BigFloat number by another.

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public static BigFloat operator %(
	BigFloat dividend,
	BigFloat divisor
)

Parameters

dividend  BigFloat
divisor  BigFloat

Return Value

BigFloat
The remainder after dividing dividend by divisor. The result has the same sign as dividend.

Implements

IModulusOperators<TSelf, TOther, TResult>.Modulus(TSelf, TOther)

Exceptions

ArgumentNullException

dividend is null.

-or-

divisor is null.

See Also