We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb0ea87 commit 97c0501Copy full SHA for 97c0501
include/Util/StringUtil.h
@@ -12,5 +12,10 @@ namespace StringUtil
12
13
std::string Replace(std::string_view source, std::string_view oldString, std::string_view newString);
14
15
+ // workaround for C++17
16
+ bool StartWith(const std::string& source, const std::string& str);
17
18
+ bool EndWith(const std::string& source, const std::string& str);
19
+
20
bool IsStringEqualIgnoreCase(std::string_view lhs, std::string_view rhs);
21
}
0 commit comments