Returns whether a
BigFloat is less than another.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static bool operator <(
BigFloat left,
BigFloat right
)
Public Shared Operator < (
left As BigFloat,
right As BigFloat
) As Boolean
public:
static bool operator <(
BigFloat^ left,
BigFloat^ right
)
static let inline (<)
left : BigFloat *
right : BigFloat : bool
Parameters
- left
- Type: Extreme.MathematicsBigFloat
The first number to compare. - right
- Type: Extreme.MathematicsBigFloat
The second number to compare.
Return Value
Type:
Boolean if
left is less than
right;
otherwise
.
Reference