%PDF- %PDF-
Direktori : /lib/python3/dist-packages/pythran/pythonic/numpy/ |
Current File : //lib/python3/dist-packages/pythran/pythonic/numpy/full_like.hpp |
#ifndef PYTHONIC_NUMPY_FULLLIKE_HPP #define PYTHONIC_NUMPY_FULLLIKE_HPP #include "pythonic/include/numpy/full_like.hpp" #include "pythonic/utils/functor.hpp" #include "pythonic/numpy/full.hpp" PYTHONIC_NS_BEGIN namespace numpy { template <class E, class F, class dtype> auto full_like(E const &expr, F fill_value, dtype d) -> decltype(full(sutils::getshape(expr), fill_value, d)) { return full(sutils::getshape(expr), fill_value, d); } template <class E, class F> auto full_like(E const &expr, F fill_value, types::none_type) -> decltype(full(sutils::getshape(expr), fill_value, types::dtype_t<typename E::dtype>())) { return full(sutils::getshape(expr), fill_value, types::dtype_t<typename E::dtype>()); } } PYTHONIC_NS_END #endif