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