| 381 | } |
| 382 | |
| 383 | bool StringUtil::includes(const std::string& str, const std::string& subject) { |
| 384 | return str.find(subject) != std::string::npos; |
| 385 | } |
| 386 | |
| 387 | bool StringUtil::includesi(const std::string& str, const std::string& subject) { |
| 388 | auto str_i = str; |