#ifndef PYTHONIC_NUMPY_CUMSUM_HPP #define PYTHONIC_NUMPY_CUMSUM_HPP #include "pythonic/include/numpy/cumsum.hpp" #include "pythonic/utils/functor.hpp" #include "pythonic/numpy/partial_sum.hpp" #include "pythonic/operator_/iadd.hpp" PYTHONIC_NS_BEGIN namespace numpy { template auto cumsum(E &&e, Opts &&... opts) -> decltype(partial_sum( std::forward(e), std::forward(opts)...)) { return partial_sum(std::forward(e), std::forward(opts)...); } } PYTHONIC_NS_END #endif