blob: 92a1f29ff09fc97da91a179d1f07da51d7969add (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef PYTHONIC_NUMPY_ISREALOBJ_HPP
#define PYTHONIC_NUMPY_ISREALOBJ_HPP
#include "pythonic/include/numpy/isrealobj.hpp"
#include "pythonic/types/ndarray.hpp"
#include "pythonic/types/traits.hpp"
#include "pythonic/utils/functor.hpp"
PYTHONIC_NS_BEGIN
namespace numpy
{
template <class E>
constexpr bool isrealobj(E const &expr)
{
return !types::is_complex<typename E::dtype>::value;
}
} // namespace numpy
PYTHONIC_NS_END
#endif
|