%PDF- %PDF-
| Direktori : /usr/lib/python3/dist-packages/pythran/pythonic/include/utils/ |
| Current File : //usr/lib/python3/dist-packages/pythran/pythonic/include/utils/numpy_conversion.hpp |
#ifndef PYTHONIC_INCLUDE_UTILS_NUMPY_CONVERSION_HPP
#define PYTHONIC_INCLUDE_UTILS_NUMPY_CONVERSION_HPP
#include "pythonic/include/utils/numpy_traits.hpp"
#include <utility>
#if _MSC_VER && !__clang__
#define NUMPY_EXPR_TO_NDARRAY0_DECL(fname) \
template <class E, class... Types, \
typename std::enable_if<!types::is_ndarray<E>::value && \
types::is_array<E>::value, \
E>::type * = nullptr> \
auto fname(E const &expr, Types &&... others);
#else
#define NUMPY_EXPR_TO_NDARRAY0_DECL(fname) \
template <class E, class... Types> \
auto fname(E const &expr, Types &&... others) \
->typename std::enable_if< \
!types::is_ndarray<E>::value && types::is_array<E>::value, \
decltype(fname( \
types::ndarray<typename E::dtype, typename E::shape_t>{expr}, \
std::forward<Types>(others)...))>::type;
#endif
#endif