BigFloat.LessThan Operator

Returns whether a BigFloat is less than another.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static bool operator <(
	BigFloat left,
	BigFloat right
)

Parameters

left  BigFloat
The first number to compare.
right  BigFloat
The second number to compare.

Return Value

Boolean
true if left is less than right; otherwise false.

See Also