#ifndef PYTHONIC_INCLUDE_NUMPY_SPLIT_HPP #define PYTHONIC_INCLUDE_NUMPY_SPLIT_HPP #include "pythonic/include/numpy/array_split.hpp" PYTHONIC_NS_BEGIN namespace numpy { template types::list::value>>> split(types::ndarray const &a, long nb_split); template typename std::enable_if< types::is_iterable::value, types::list::value>>>>::type split(types::ndarray const &a, I const &split_mask); template types::list>> split(E const &a, I const &); DEFINE_FUNCTOR(pythonic::numpy, split); } PYTHONIC_NS_END #endif