Function lessThanIgnoreCase [src]
Returns whether the lexicographical order of lhs is lower than rhs.
Prototype
pub fn lessThanIgnoreCase(lhs: []const u8, rhs: []const u8) bool Parameters
lhs: []const u8rhs: []const u8 Source
pub fn lessThanIgnoreCase(lhs: []const u8, rhs: []const u8) bool {
return orderIgnoreCase(lhs, rhs) == .lt;
}