| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2025-09-12 | Constify Eq, Ord, PartialOrd | Evgenii Zheltonozhskii | -17/+29 | |
| 2025-08-03 | Use `as_array` in PartialEq for arrays | Scott McMurray | -16/+12 | |
| 2024-03-25 | Import the 2021 prelude in the core crate | Daniel Paoliello | -1/+0 | |
| 2024-01-26 | Use `<T, U>` for array/slice equality `impl`s | wackbyte | -32/+32 | |
| Makes the trait implementation documentation for arrays and slices appear more consistent. | ||||
| 2023-03-01 | Merge two different equality specialization traits in `core` | Scott McMurray | -67/+6 | |
| 2022-08-11 | more typos | Ralf Jung | -1/+1 | |
| Co-authored-by: Nicholas Nethercote <n.nethercote@gmail.com> | ||||
| 2022-07-20 | fix typo | Ralf Jung | -1/+1 | |
| Co-authored-by: Marco Colombo <mar.colombo13@gmail.com> | ||||
| 2022-07-20 | make raw_eq precondition more restrictive | Ralf Jung | -3/+4 | |
| 2021-12-14 | Do array-slice equality via arrays, rather than always via slices | Scott McMurray | -12/+29 | |
| This'll still go via slices eventually for large arrays, but this way slice comparisons to short arrays can use the same memcmp-avoidance tricks. Added some tests for all the combinations to make sure I didn't accidentally infinitely-recurse something. | ||||
| 2021-12-10 | Allow `memcmp` for more array comparisons | Scott McMurray | -5/+49 | |
| This way comparing `[NonZeroU8; 8]` is just as fast as comparing `[u8; 8]`. | ||||
| 2021-08-01 | bump bootstrap compiler to 1.55 | Pietro Albini | -5/+0 | |
| 2021-07-08 | Stop generating `alloca`s+`memcmp` for simple array equality | Scott McMurray | -2/+51 | |
| 2021-07-08 | Move the `PartialEq` and `Eq` impls for arrays to a separate file | Scott McMurray | -0/+111 | |
