← Back
Editing: copyto.hpp
#ifndef PYTHONIC_INCLUDE_NUMPY_COPYTO_HPP #define PYTHONIC_INCLUDE_NUMPY_COPYTO_HPP #include "pythonic/include/utils/functor.hpp" #include "pythonic/include/types/ndarray.hpp" PYTHONIC_NS_BEGIN namespace numpy { template <class T, class pS, class E> types::ndarray<T, pS> copyto(types::ndarray<T, pS> &out, E const &expr); DEFINE_FUNCTOR(pythonic::numpy, copyto); } PYTHONIC_NS_END #endif
Save File
Cancel