* Does not compare alphabetically, uses the index for ordering. */
| 118 | * Does not compare alphabetically, uses the index for ordering. |
| 119 | */ |
| 120 | inline bool operator<(IndexedStringView lhs, IndexedStringView rhs) |
| 121 | { |
| 122 | return lhs.index() < rhs.index(); |
| 123 | } |
| 124 | |
| 125 | inline size_t qHash(IndexedStringView str) |
| 126 | { |