Returns whether left quadruple-precision floating-point number is
greater than another.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static bool operator >(
Quad left,
Quad right
)
Public Shared Operator > (
left As Quad,
right As Quad
) As Boolean
public:
static bool operator >(
Quad left,
Quad right
)
static let inline (>)
left : Quad *
right : Quad : bool
Parameters
- left
- Type: Extreme.MathematicsQuad
The first number to compare. - right
- Type: Extreme.MathematicsQuad
The second number to compare.
Return Value
Type:
Boolean if
left is
greater than
right;
otherwise
.
Reference