#ifndef PYTHONIC_INCLUDE_NUMPY_ZEROS_HPP #define PYTHONIC_INCLUDE_NUMPY_ZEROS_HPP #include "pythonic/include/numpy/float64.hpp" #include "pythonic/include/utils/functor.hpp" #include "pythonic/include/types/ndarray.hpp" PYTHONIC_NS_BEGIN namespace numpy { template types::ndarray> zeros(pS const &shape, dtype d = dtype()); template types::ndarray> zeros(long size, dtype d = dtype()); template types::ndarray>> zeros(std::integral_constant, dtype d = dtype()); DEFINE_FUNCTOR(pythonic::numpy, zeros); } PYTHONIC_NS_END #endif