#ifndef PYTHONIC_OPERATOR_IPOW_HPP #define PYTHONIC_OPERATOR_IPOW_HPP #include "pythonic/include/operator_/ipow.hpp" #include "pythonic/utils/functor.hpp" #include "pythonic/builtins/pow.hpp" PYTHONIC_NS_BEGIN namespace operator_ { template A ipow(A const &a, B &&b) { return builtins::pow(a, std::forward(b)); } template A &ipow(A &a, B &&b) { return a = builtins::pow(a, std::forward(b)); } } PYTHONIC_NS_END #endif