Files
rust/library
Ben Kimock 3a0fa0375d Fix SB problems in slice sorting
Most of these problems originate in use of get_unchecked_mut.

When calling ptr::copy_nonoverlapping, using get_unchecked_mut for both
arguments causes the borrow created to make the second pointer to invalid the
first.

The pairs of identical MaybeUninit::slice_as_mut_ptr calls similarly
invalidate each other.

There was also a similar borrow invalidation problem with the use of
slice::get_unchecked_mut to derive the pointer for the CopyOnDrop.
2021-12-16 10:31:46 -05:00
..
2021-11-02 12:31:34 +01:00
2021-12-16 10:31:46 -05:00
2021-12-14 16:40:43 +01:00
2021-12-14 16:42:16 +05:30
2021-12-15 21:00:06 -05:00
2021-12-15 10:22:03 +08:00