GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
std::isunordered(3) C++ Standard Libary std::isunordered(3)

std::isunordered - std::isunordered


Defined in header <cmath>
bool isunordered( float x, float y ); (1) (since C++11)
(constexpr since C++23)
bool isunordered( double x, double y ); (2) (since C++11)
(constexpr since C++23)
bool isunordered( long double x, long double y ); (3) (since C++11)
(constexpr since C++23)
bool isunordered( Arithmetic x, Arithmetic y ); (4) (since C++11)
(constexpr since C++23)


1-3) Determines if the floating point numbers x and y are unordered, that is, one or
both are NaN and thus cannot be meaningfully compared with each other.
4) A set of overloads or a function template for all combinations of arguments of
arithmetic type not covered by (1-3). If any argument has integral type, it is cast
to double.


x - floating point value
y - floating point value


true if either x or y is NaN, false otherwise


fpclassify categorizes the given floating-point value
(C++11) (function)
isnan checks if the given number is NaN
(C++11) (function)

2022.07.31 http://cppreference.com

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.