Example #1
0
inline bool is_null(float const& f) {
  return GRAEHL_ISNAN(f);
}
Example #2
0
inline bool is_null(double const& f) {
  return GRAEHL_ISNAN(f);
}
Example #3
0
File: nan.hpp Project: graehl/hyp
inline bool is_nan(T x) {
  return GRAEHL_ISNAN(x);
}