rust/library/alloctests
Karl Meakin 94ff542ff5 Make panic message less confusing
The panic message when slicing a string with a negative length range (eg
`"abcdef"[4..3]`) is confusing: it gives the condition that failed to hold,
whilst all the other panic messages give the condition that did hold.

Before:
begin <= end (4 <= 3) when slicing `abcdef`

After:
begin > end (4 > 3) when slicing `abcdef`
2026-02-10 23:19:01 +00:00
..
benches Use rand crate more idiomatically 2026-01-07 22:31:33 +02:00
testing [std][BTree] Create tests for keys which can be == without being identical 2025-08-20 03:39:40 +08:00
tests Make panic message less confusing 2026-02-10 23:19:01 +00:00
Cargo.toml btree: cleanup difference, intersection, is_subset 2025-11-04 15:37:54 +00:00
lib.rs Address review comments and fix tests 2026-01-30 09:55:53 -05:00