%PDF- %PDF-
| Direktori : /proc/thread-self/root/usr/lib/python3/dist-packages/pythran/pythonic/builtins/str/ |
| Current File : //proc/thread-self/root/usr/lib/python3/dist-packages/pythran/pythonic/builtins/str/find.hpp |
#ifndef PYTHONIC_BUILTIN_STR_FIND_HPP
#define PYTHONIC_BUILTIN_STR_FIND_HPP
#include "pythonic/include/builtins/str/find.hpp"
#include "pythonic/types/str.hpp"
#include "pythonic/utils/functor.hpp"
PYTHONIC_NS_BEGIN
namespace builtins
{
namespace str
{
long find(types::str const &s, types::str const &value, long start,
long end)
{
if (end < 0)
end += s.size();
long a = s.find(value, start);
return (a > end) ? -1 : a;
}
long find(types::str const &s, types::str const &value, long start)
{
return find(s, value, start, s.size());
}
long find(types::str const &s, types::str const &value)
{
return find(s, value, 0, s.size());
}
}
}
PYTHONIC_NS_END
#endif