%PDF- %PDF-
Direktori : /proc/985914/root/lib/python3/dist-packages/pythran/pythonic/bisect/ |
Current File : //proc/985914/root/lib/python3/dist-packages/pythran/pythonic/bisect/bisect_right.hpp |
#ifndef PYTHONIC_BISECT_BISECTRIGHT_HPP #define PYTHONIC_BISECT_BISECTRIGHT_HPP #include "pythonic/include/bisect/bisect_right.hpp" #include "pythonic/bisect/bisect.hpp" #include "pythonic/utils/functor.hpp" PYTHONIC_NS_BEGIN namespace bisect { template <class X, class A> long bisect_right(X const &x, A const &a, long lo) { return bisect(x, a, lo); } template <class X, class A> long bisect_right(X const &x, A const &a, long lo, long hi) { return bisect(x, a, lo, hi); } } PYTHONIC_NS_END #endif