#ifndef PYTHONIC_NUMPY_UINT64_HPP #define PYTHONIC_NUMPY_UINT64_HPP #include "pythonic/include/numpy/uint64.hpp" #include "pythonic/utils/functor.hpp" #include "pythonic/utils/numpy_traits.hpp" #include "pythonic/types/numpy_op_helper.hpp" PYTHONIC_NS_BEGIN namespace numpy { namespace details { uint64_t uint64() { return uint64_t(); } template uint64_t uint64(V v) { return v; } } #define NUMPY_NARY_FUNC_NAME uint64 #define NUMPY_NARY_FUNC_SYM details::uint64 #include "pythonic/types/numpy_nary_expr.hpp" } PYTHONIC_NS_END #endif