blob: dcb8d5ac329902910617e60adf51e43413ac7f55 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef PYTHONIC_INCLUDE_BUILTIN_COMPLEX_CONJUGATE_HPP
#define PYTHONIC_INCLUDE_BUILTIN_COMPLEX_CONJUGATE_HPP
#include "pythonic/include/utils/functor.hpp"
#include "pythonic/include/numpy/conjugate.hpp"
PYTHONIC_NS_BEGIN
namespace builtins
{
namespace complex
{
USING_FUNCTOR(conjugate, numpy::functor::conjugate);
}
}
PYTHONIC_NS_END
#endif
|