#ifndef PYTHONIC_INCLUDE_NUMPY_EMPTY_HPP #define PYTHONIC_INCLUDE_NUMPY_EMPTY_HPP #include "pythonic/include/utils/functor.hpp" #include "pythonic/include/numpy/float64.hpp" #include "pythonic/include/types/ndarray.hpp" PYTHONIC_NS_BEGIN namespace numpy { template types::ndarray> empty(pS const &shape, dtype d = dtype()); template types::ndarray> empty(long size, dtype d = dtype()); template types::ndarray>> empty(std::integral_constant, dtype d = dtype()); DEFINE_FUNCTOR(pythonic::numpy, empty); } PYTHONIC_NS_END #endif