Content-type: text/html Man page of isunordered

isunordered

Section: Mathematical Library Functions (3M)
Updated: 12 Jul 2006
Index Return to Main Contents
 

NAME

isunordered - test if arguments are unordered  

SYNOPSIS

c99 [ flag... ] file... -lm [ library... ]
#include <math.h>

int isunordered(real-floating x, real-floating y);  

DESCRIPTION

The isunordered() macro determines whether its arguments are unordered.  

RETURN VALUES

Upon successful completion, the isunordered() macro returns 1 if its arguments are unordered and 0 otherwise.  

ERRORS

No errors are defined.  

USAGE

The 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 shall be an expression of real-floating type.  

ATTRIBUTES

See attributes(5) for descriptions of the following attributes:

ATTRIBUTE TYPEATTRIBUTE VALUE
Interface StabilityStandard
MT-LevelMT-Safe

 

SEE ALSO

isgreater(3M), isgreaterequal(3M), isless(3M), islessequal(3M), islessgreater(3M), math.h(3HEAD), attributes(5), standards(5)


 

Index

NAME
SYNOPSIS
DESCRIPTION
RETURN VALUES
ERRORS
USAGE
ATTRIBUTES
SEE ALSO

This document was created by man2html, using the manual pages.
Time: 02:39:32 GMT, October 02, 2010