Quad.GreaterThanOrEqual Operator

Returns whether left quadruple-precision floating-point number is greater than or equal to another.

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public static bool operator >=(
	Quad left,
	Quad right
)

Parameters

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

Return Value

Boolean
true if left is greater than or equal to right; otherwise false.

Implements

IComparisonOperators<TSelf, TOther, TResult>.GreaterThanOrEqual(TSelf, TOther)

See Also