Compares two quadruple-precision numbers.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static int Compare(
Quad first,
Quad second
)
Public Shared Function Compare (
first As Quad,
second As Quad
) As Integer
public:
static int Compare(
Quad first,
Quad second
)
static member Compare :
first : Quad *
second : Quad -> int
Parameters
- first
- Type: Extreme.MathematicsQuad
The first number to compare. - second
- Type: Extreme.MathematicsQuad
The second number to compare.
Return Value
Type:
Int32-1 if
first is less than
second; +1 if
first is larger
than
second; 0 if
first equals
second.
Reference