DoubleDoubleCompare Method |
Compares two values.
Namespace:
Meta.Numerics.Extended
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax public static int Compare(
DoubleDouble x,
DoubleDouble y
)
Public Shared Function Compare (
x As DoubleDouble,
y As DoubleDouble
) As Integer
public:
static int Compare(
DoubleDouble x,
DoubleDouble y
)
static member Compare :
x : DoubleDouble *
y : DoubleDouble -> int
Parameters
- x
- Type: Meta.Numerics.ExtendedDoubleDouble
The first value. - y
- Type: Meta.Numerics.ExtendedDoubleDouble
The second value.
Return Value
Type:
Int32-1 if
x is less than
y, +1 if
x is greater than
y, 0 if
x and
y are equal.
See Also