#ifndef PYTHONIC_INCLUDE_OPERATOR_IFLOORDIV_HPP #define PYTHONIC_INCLUDE_OPERATOR_IFLOORDIV_HPP #include "pythonic/include/utils/functor.hpp" #include "pythonic/include/operator_/mod.hpp" PYTHONIC_NS_BEGIN namespace operator_ { template A ifloordiv(A &&a, B &&b); template auto ifloordiv(A const &a, B &&b) -> decltype((a - mod(a, b)) / b); DEFINE_FUNCTOR(pythonic::operator_, ifloordiv); } PYTHONIC_NS_END #endif