| 385 | } |
| 386 | |
| 387 | bool 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 | |
| 395 | std::string StringUtil::hexPrint( |
| 396 | const void* data, |
nothing calls this directly
no outgoing calls
no test coverage detected