#ifndef PYTHONIC_INCLUDE_STRING_FIND_HPP #define PYTHONIC_INCLUDE_STRING_FIND_HPP #include "pythonic/include/utils/functor.hpp" #include "pythonic/include/types/str.hpp" PYTHONIC_NS_BEGIN namespace string { template long find(types::str const &s, T &&val); DEFINE_FUNCTOR(pythonic::string, find); } PYTHONIC_NS_END #endif