MCPcopy Create free account
hub / github.com/EmmyLua/EmmyLuaDebugger / CaseInsensitiveLess

Class CaseInsensitiveLess

emmy_debugger/include/emmy_debugger/util.h:7–9  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5bool CompareIgnoreCase(const std::string &lh, const std::string &rh);
6
7struct CaseInsensitiveLess final {
8 bool operator()(const std::string &lhs, const std::string &rhs) const;
9};
10
11// 直到C++ 20才有endwith,这里自己写一个
12bool EndWith(const std::string &source, const std::string &end);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected