#ifndef PYTHONIC_INCLUDE_NUMPY_PUT_HPP #define PYTHONIC_INCLUDE_NUMPY_PUT_HPP #include "pythonic/include/utils/functor.hpp" #include "pythonic/include/types/ndarray.hpp" #include "pythonic/include/utils/numpy_conversion.hpp" PYTHONIC_NS_BEGIN namespace numpy { template typename std::enable_if::value, types::none_type>::type put(types::ndarray &expr, F const &ind, E const &v); template types::none_type put(types::ndarray &expr, long int ind, T const &v); template types::none_type put(E &, M const &, V const &); DEFINE_FUNCTOR(pythonic::numpy, put); } PYTHONIC_NS_END #endif