#ifndef PYTHONIC_BUILTIN_DIVMOD_HPP #define PYTHONIC_BUILTIN_DIVMOD_HPP #include "pythonic/include/builtins/divmod.hpp" #include "pythonic/types/tuple.hpp" #include "pythonic/utils/functor.hpp" PYTHONIC_NS_BEGIN namespace builtins { template auto divmod(T0 const &t0, T1 const &t1) // other types are left over -> decltype(types::make_tuple(t0 / t1, t0 % t1)) { return types::make_tuple(t0 / t1, t0 % t1); } } PYTHONIC_NS_END #endif