Query: isgreater
OS: opensolaris
Section: 3m
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
isgreater(3M) Mathematical Library Functions isgreater(3M)NAMEisgreater - test if x greater than ySYNOPSISc99 [ flag... ] file... -lm [ library... ] #include <math.h> int isgreater(real-floating x, real-floating y);DESCRIPTIONThe isgreater() macro determines whether its first argument is greater than its second argument. The value of isgreater(x, y) is equal to (x) > (y); however, unlike (x) > (y), isgreater(x, y) does not raise the invalid floating-point exception when x and y are unordered.RETURN VALUESUpon successful completion, the isgreater() macro returns the value of (x) > (y). If x or y is NaN, 0 is returned.ERRORSNo errors are defined.USAGEThe relational and equality operators support the usual mathematical relationships between numeric values. For any ordered pair of numeric values, exactly one of the relationships (less, greater, and equal) is true. Relational operators can raise the invalid floating-point exception when argument values are NaNs. For a NaN and a numeric value, or for two NaNs, just the unordered relationship is true. This macro is a quiet (non-floating-point exception raising) version of a relational operator. It facilitates writing efficient code that accounts for quiet NaNs without suffering the invalid floating-point exception. In the SYNOPSIS section, real-floating indicates that the argument is an expression of real-floating type.ATTRIBUTESSee attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Interface Stability |Standard | +-----------------------------+-----------------------------+ |MT-Level |MT-Safe | +-----------------------------+-----------------------------+SEE ALSOisgreaterequal(3M), isless(3M), islessequal(3M), islessgreater(3M), isunordered(3M), math.h(3HEAD), attributes(5), standards(5) SunOS 5.11 12 Jul 2006 isgreater(3M)
Related Man Pages |
---|
isunordered(3m) - sunos |
isgreater(3m) - opensolaris |
isgreaterequal(3m) - opensolaris |
isless(3m) - opensolaris |
islessequal(3m) - opensolaris |
Similar Topics in the Unix Linux Community |
---|
Relational 0.5 (Default branch) |
Relational 0.6 (Default branch) |
Relational 0.7 (Default branch) |
Relational 0.9 (Default branch) |
Relational 0.8 (Default branch) |