Skip to content

Commit bf27819

Browse files
committed
Don't implement mem::replace with mem::swap.
1 parent 1d6b0f6 commit bf27819

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

library/core/src/mem/mod.rs

+9-3
Original file line numberDiff line numberDiff line change
@@ -812,9 +812,15 @@ pub fn take<T: Default>(dest: &mut T) -> T {
812812
#[inline]
813813
#[stable(feature = "rust1", since = "1.0.0")]
814814
#[must_use = "if you don't need the old value, you can just assign the new value directly"]
815-
pub fn replace<T>(dest: &mut T, mut src: T) -> T {
816-
swap(dest, &mut src);
817-
src
815+
pub fn replace<T>(dest: &mut T, src: T) -> T {
816+
// SAFETY: We read from `dest` but directly write `src` into it afterwards,
817+
// such that the old value is not duplicated. Nothing is dropped and
818+
// nothing here can panic.
819+
unsafe {
820+
let result = ptr::read(dest);
821+
ptr::write(dest, src);
822+
result
823+
}
818824
}
819825

820826
/// Disposes of a value.

0 commit comments

Comments
 (0)