\brief Returns true if \p string is lexicographically less than \p other. Treats all ascii characters as lower-case during comparisons. O(n)
| 77 | /// Treats all ascii characters as lower-case during comparisons. |
| 78 | /// O(n) |
| 79 | inline bool string_less_nocase(const char* string, const char* other) |
| 80 | { |
| 81 | return string::icmp(string, other) < 0; |
| 82 | } |