%PDF- %PDF-
Direktori : /proc/thread-self/root/lib/python3/dist-packages/pythran/pythonic/builtins/ |
Current File : //proc/thread-self/root/lib/python3/dist-packages/pythran/pythonic/builtins/divmod.hpp |
#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 <class T0, class T1> 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