#ifndef PYTHONIC_INCLUDE_NUMPY_STACK_HPP #define PYTHONIC_INCLUDE_NUMPY_STACK_HPP #include PYTHONIC_NS_BEGIN namespace numpy { template types::ndarray> stack(ArraySequence const &args, long axis = 0); namespace details { template using stack_helper_t = typename __combined::type...>::type; } template types::ndarray::dtype, types::array::value + 1>> stack(std::tuple const &args, long axis = 0); DEFINE_FUNCTOR(pythonic::numpy, stack); } PYTHONIC_NS_END #endif