DoubleDoubleGreaterThanOrEqual Operator
            Determines whether the first value is greater than or equal to the second value.
            
Namespace: Meta.Numerics.ExtendedAssembly: Meta.Numerics (in Meta.Numerics.dll) Version: 4.2.0+6d77d64445f7d5d91b12e331399c4362ecb25333
public static bool operator >=(
	DoubleDouble x,
	DoubleDouble y
)
Public Shared Operator >= ( 
	x As DoubleDouble,
	y As DoubleDouble
) As Boolean
public:
static bool operator >=(
	DoubleDouble x, 
	DoubleDouble y
)
static let inline (>=)
        x : DoubleDouble * 
        y : DoubleDouble  : bool
- x  DoubleDouble
- The first value.
- y  DoubleDouble
- The second value.
Boolean if 
x is greater than or equal to 
y, otherwise 
.