#ifndef PYTHONIC_NUMPY_MAX_HPP #define PYTHONIC_NUMPY_MAX_HPP #include "pythonic/include/numpy/max.hpp" #include "pythonic/utils/functor.hpp" #include "pythonic/numpy/reduce.hpp" #include "pythonic/operator_/imax.hpp" PYTHONIC_NS_BEGIN namespace numpy { template auto max(Args &&... args) -> decltype(reduce(std::forward(args)...)) { return reduce(std::forward(args)...); } } PYTHONIC_NS_END #endif