blob: 4ea024f99b624208583748551caf20e1a4e3d0bb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef PYTHONIC_INCLUDE_NUMPY_RESIZE_HPP
#define PYTHONIC_INCLUDE_NUMPY_RESIZE_HPP
#include "pythonic/include/utils/functor.hpp"
#include "pythonic/include/numpy/ndarray/reshape.hpp"
PYTHONIC_NS_BEGIN
namespace numpy
{
USING_FUNCTOR(resize, pythonic::numpy::ndarray::functor::reshape);
}
PYTHONIC_NS_END
#endif
|