20 #ifndef UTILS_STRINGS_FIND_LAST_OF_H
21 #define UTILS_STRINGS_FIND_LAST_OF_H
28 const std::string &needle) {
29 return haystack.rfind(needle);
32 inline size_t FindLastOf(
const std::string &haystack,
char needle) {
33 const std::string needle_string = { needle };
size_t FindLastOf(const std::string &haystack, const std::string &needle)