#ifndef PYTHONIC_INCLUDE_NUMPY_ARGMAX_HPP #define PYTHONIC_INCLUDE_NUMPY_ARGMAX_HPP #include "pythonic/include/utils/functor.hpp" #include "pythonic/include/types/ndarray.hpp" PYTHONIC_NS_BEGIN namespace numpy { template long argmax(E const &expr); template types::ndarray> argmax(E const &expr, long axis); DEFINE_FUNCTOR(pythonic::numpy, argmax); } PYTHONIC_NS_END #endif