#ifndef PYTHONIC_INCLUDE_NUMPY_IMAG_HPP #define PYTHONIC_INCLUDE_NUMPY_IMAG_HPP #include "pythonic/include/utils/functor.hpp" #include "pythonic/include/numpy/asarray.hpp" #include "pythonic/include/types/ndarray.hpp" #include "pythonic/include/types/list.hpp" PYTHONIC_NS_BEGIN namespace numpy { template auto imag(E &&expr) -> decltype(builtins::getattr(types::attr::IMAG{}, std::forward(expr))); template auto imag(types::list const &expr) -> decltype(imag(numpy::functor::asarray{}(expr))); DEFINE_FUNCTOR(pythonic::numpy, imag); } PYTHONIC_NS_END #endif