%PDF- %PDF-
| Direktori : /lib/python3/dist-packages/pythran/pythonic/operator_/ |
| Current File : //lib/python3/dist-packages/pythran/pythonic/operator_/itruediv.hpp |
#ifndef PYTHONIC_OPERATOR_ITRUEDIV_HPP
#define PYTHONIC_OPERATOR_ITRUEDIV_HPP
#include "pythonic/include/operator_/itruediv.hpp"
#include "pythonic/utils/functor.hpp"
#include "pythonic/operator_/truediv.hpp"
PYTHONIC_NS_BEGIN
namespace operator_
{
template <class A, class B>
auto itruediv(A const &a, B &&b) -> decltype(truediv(a, std::forward<B>(b)))
{
return truediv(a, std::forward<B>(b));
}
template <class A, class B>
auto itruediv(A &a, B &&b) -> typename std::enable_if<
std::is_same<A, decltype(truediv(a, std::forward<B>(b)))>::value,
A &>::type
{
return a = truediv(a, std::forward<B>(b));
}
template <class A, class B>
auto itruediv(A &a, B &&b) -> typename std::enable_if<
!std::is_same<A, decltype(truediv(a, std::forward<B>(b)))>::value,
decltype(truediv(a, std::forward<B>(b)))>::type
{
return truediv(a, std::forward<B>(b));
}
}
PYTHONIC_NS_END
#endif