#ifndef PYTHONIC_INCLUDE_NUMPY_NDARRAY_FILL_HPP #define PYTHONIC_INCLUDE_NUMPY_NDARRAY_FILL_HPP #include "pythonic/utils/functor.hpp" #include "pythonic/types/ndarray.hpp" #include "pythonic/builtins/None.hpp" PYTHONIC_NS_BEGIN namespace numpy { namespace ndarray { template types::none_type fill(E &&e, F f); template types::none_type fill(types::ndarray &e, F f); DEFINE_FUNCTOR(pythonic::numpy::ndarray, fill); } } PYTHONIC_NS_END #endif