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