Search Results

1
vote

Using NaN in C++?

You can write a signalling NaN into a variable without triggering an exception with something like this (nb: untested) void set_snan( double &d ) { long long *bits = (long l …
0
votes

How to use std::signaling_nan?

From TFM: cout << "The signaling NaN for type float is: " << numeric_limits<fl …