| 24 | } |
| 25 | |
| 26 | inline bool ciLess(std::string_view x, std::string_view y) |
| 27 | { |
| 28 | return std::lexicographical_compare(x.begin(), x.end(), y.begin(), y.end(), CiCharLess()); |
| 29 | } |
| 30 | |
| 31 | inline bool ciEqual(std::string_view x, std::string_view y) |
| 32 | { |
no test coverage detected