#ifndef PYTHONIC_DISPATCH_CONJUGATE_HPP #define PYTHONIC_DISPATCH_CONJUGATE_HPP #include "pythonic/include/__dispatch__/conjugate.hpp" #include "pythonic/numpy/conjugate.hpp" #include "pythonic/utils/functor.hpp" PYTHONIC_NS_BEGIN namespace __dispatch__ { template auto conjugate(Any const &any) -> decltype(numpy::functor::conjugate{}(any)) { return numpy::functor::conjugate{}(any); } } PYTHONIC_NS_END #endif