#ifndef PYTHONIC_INCLUDE_NUMPY_TILE_HPP #define PYTHONIC_INCLUDE_NUMPY_TILE_HPP #include "pythonic/include/utils/functor.hpp" #include "pythonic/include/types/ndarray.hpp" PYTHONIC_NS_BEGIN namespace numpy { template types::ndarray> tile(E const &expr, long reps); template types::ndarray> tile(E const &expr, types::array const &reps); DEFINE_FUNCTOR(pythonic::numpy, tile); } PYTHONIC_NS_END #endif