blob: 813bc257e3b4d4450ba7bdf1d8410c768a76c4da (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef PYTHONIC_NUMPY_SIZE_HPP
#define PYTHONIC_NUMPY_SIZE_HPP
#include "pythonic/include/numpy/size.hpp"
#include "pythonic/utils/functor.hpp"
#include "pythonic/types/ndarray.hpp"
PYTHONIC_NS_BEGIN
namespace numpy
{
template <class E>
auto size(E const &e) -> decltype(e.flat_size())
{
return e.flat_size();
}
}
PYTHONIC_NS_END
#endif
|