MCPcopy Create free account
hub / github.com/asmuth/clip / includesi

Method includesi

src/utils/stringutil.cc:387–393  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

385}
386
387bool StringUtil::includesi(const std::string& str, const std::string& subject) {
388 auto str_i = str;
389 StringUtil::toLower(&str_i);
390 auto subject_i = subject;
391 StringUtil::toLower(&subject_i);
392 return includes(str_i, subject_i);
393}
394
395std::string StringUtil::hexPrint(
396 const void* data,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected