You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Auto merge of #147378 - kornelski:pivot-safely, r=scottmcm
Safer sort partition
This reduces amount of `unsafe` code in `partition()`, while generating essentially the same code.
~~`partition()` and functions calling it can only run into out-of-bounds issues if the `is_less` function is buggy, so I've used cold `panic_on_ord_violation()` to replace various other panics/aborts. This slightly reduces code size, and gives a more relevant error message.~~
Related to #144327
0 commit comments