#ifndef PYTHONIC_NUMPY_ALLTRUE_HPP #define PYTHONIC_NUMPY_ALLTRUE_HPP #include "pythonic/include/numpy/alltrue.hpp" #include "pythonic/numpy/all.hpp" PYTHONIC_NS_BEGIN namespace numpy { template auto alltrue(Types &&... types) -> decltype(all(std::forward(types)...)) { return all(std::forward(types)...); } } PYTHONIC_NS_END #endif