#ifndef PYTHONIC_NUMPY_ISNAN_HPP #define PYTHONIC_NUMPY_ISNAN_HPP #include "pythonic/include/numpy/isnan.hpp" #include "pythonic/types/ndarray.hpp" #include "pythonic/utils/functor.hpp" #include "pythonic/utils/numpy_traits.hpp" PYTHONIC_NS_BEGIN namespace numpy { namespace wrapper { template bool isnan(std::complex const &v) { return std::isnan(v.real()) || std::isnan(v.imag()); } template auto isnan(T const &v) -> typename std::enable_if< std::is_floating_point::type>::value, bool>::type { return std::isnan(v); } template auto isnan(T const &v) -> typename std::enable_if< !std::is_floating_point::type>::value, bool>::type { return false; } } #define NUMPY_NARY_FUNC_NAME isnan #define NUMPY_NARY_FUNC_SYM wrapper::isnan #include "pythonic/types/numpy_nary_expr.hpp" } PYTHONIC_NS_END #endif