Files
rust/library
bors 190f4c9611 Auto merge of #116846 - krtab:slice_compare_no_memcmp_opt, r=the8472
A more efficient slice comparison implementation for T: !BytewiseEq

(This is a follow up PR on #113654)

This PR changes the implementation for `[T]` slice comparison when `T: !BytewiseEq`. The previous implementation using zip was not optimized properly by the compiler, which didn't leverage the fact that both length were equal. Performance improvements are for example 20% when testing that `[Some(0_u64); 4096].as_slice() == [Some(0_u64); 4096].as_slice()`.
2024-01-09 20:52:34 +00:00
..
2023-11-21 16:33:42 +01:00
2023-12-07 10:33:03 +08:00
2023-08-23 20:05:14 -04:00
2023-10-12 11:11:29 +02:00
2023-12-31 11:18:25 -05:00