@@ -774,7 +774,7 @@ pub const fn slice_from_raw_parts_mut<T>(data: *mut T, len: usize) -> *mut [T] {
774
774
/// Swaps the values at two mutable locations of the same type, without
775
775
/// deinitializing either.
776
776
///
777
- /// But for the following two exceptions, this function is semantically
777
+ /// But for the following exceptions, this function is semantically
778
778
/// equivalent to [`mem::swap`]:
779
779
///
780
780
/// * It operates on raw pointers instead of references. When references are
@@ -784,6 +784,9 @@ pub const fn slice_from_raw_parts_mut<T>(data: *mut T, len: usize) -> *mut [T] {
784
784
/// overlapping region of memory from `x` will be used. This is demonstrated
785
785
/// in the second example below.
786
786
///
787
+ /// * The operation is "untyped" in the sense that data may be uninitialized or otherwise violate
788
+ /// the requirements of `T`. The initialization state is preserved exactly.
789
+ ///
787
790
/// # Safety
788
791
///
789
792
/// Behavior is undefined if any of the following conditions are violated:
@@ -860,6 +863,9 @@ pub const unsafe fn swap<T>(x: *mut T, y: *mut T) {
860
863
/// Swaps `count * size_of::<T>()` bytes between the two regions of memory
861
864
/// beginning at `x` and `y`. The two regions must *not* overlap.
862
865
///
866
+ /// The operation is "untyped" in the sense that data may be uninitialized or otherwise violate the
867
+ /// requirements of `T`. The initialization state is preserved exactly.
868
+ ///
863
869
/// # Safety
864
870
///
865
871
/// Behavior is undefined if any of the following conditions are violated:
@@ -965,7 +971,7 @@ const unsafe fn swap_nonoverlapping_simple_untyped<T>(x: *mut T, y: *mut T, coun
965
971
// SAFETY: By precondition, `i` is in-bounds because it's below `n`
966
972
// and it's distinct from `x` since the ranges are non-overlapping
967
973
let y = unsafe { & mut * y. add ( i) } ;
968
- mem:: swap_simple ( x, y) ;
974
+ mem:: swap_simple :: < MaybeUninit < T > > ( x, y) ;
969
975
970
976
i += 1 ;
971
977
}
0 commit comments