MCPcopy Create free account
hub / github.com/baumgarr/nixnote2 / caseInsensitiveLessThan

Function caseInsensitiveLessThan

global.cpp:833–836  ·  view source on GitHub ↗

Utility function for case insensitive sorting

Source from the content-addressed store, hash-verified

831
832// Utility function for case insensitive sorting
833bool caseInsensitiveLessThan(const QString &s1, const QString &s2)
834 {
835 return s1.toLower() < s2.toLower();
836 }
837
838
839

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected