| author | |
| committer | |
| log | 028134055cca7c8ec9799a0fea4bccf285e5b722 |
| tree | 456093122384901f49ee6ee83bbf41004f5c4835 |
| parent | 9b79c6ae522f46c48352897dba0bdc9376b0cd78 |
It was supposed to be removed: https://github.com/ziglang/zig/commit/490654c332f2d8eaf7edffa35ea0523800df998d#r476432781 files changed, 1 insertions(+), 2 deletions(-)
lib/std/ascii.zig+1-2| ... | ... | @@ -517,8 +517,7 @@ pub fn orderIgnoreCase(lhs: []const u8, rhs: []const u8) std.math.Order { |
| 517 | 517 | return std.math.order(lhs.len, rhs.len); |
| 518 | 518 | } |
| 519 | 519 | |
| 520 | /// Returns true if lhs < rhs, false otherwise | |
| 521 | /// TODO rename "IgnoreCase" to "Insensitive" in this entire file. | |
| 520 | /// Returns whether `lhs` < `rhs`. | |
| 522 | 521 | pub fn lessThanIgnoreCase(lhs: []const u8, rhs: []const u8) bool { |
| 523 | 522 | return orderIgnoreCase(lhs, rhs) == .lt; |
| 524 | 523 | } |