#ifndef PYTHONIC_INCLUDE_NUMPY_NDIM_HPP #define PYTHONIC_INCLUDE_NUMPY_NDIM_HPP #include "pythonic/include/utils/functor.hpp" #include "pythonic/include/types/ndarray.hpp" PYTHONIC_NS_BEGIN namespace numpy { template auto ndim(E const &e) -> decltype(builtins::getattr(types::attr::NDIM{}, e)); DEFINE_FUNCTOR(pythonic::numpy, ndim) } PYTHONIC_NS_END #endif