diff --git a/src/libcollections/binary_heap.rs b/src/libcollections/binary_heap.rs index a3e32b59b710d..b7afe9685778e 100644 --- a/src/libcollections/binary_heap.rs +++ b/src/libcollections/binary_heap.rs @@ -167,12 +167,22 @@ use vec::{self, Vec}; /// item's ordering relative to any other item, as determined by the `Ord` /// trait, changes while it is in the heap. This is normally only possible /// through `Cell`, `RefCell`, global state, I/O, or unsafe code. -#[derive(Clone)] #[stable(feature = "rust1", since = "1.0.0")] pub struct BinaryHeap { data: Vec, } +#[stable(feature = "rust1", since = "1.0.0")] +impl Clone for BinaryHeap { + fn clone(&self) -> Self { + BinaryHeap { data: self.data.clone() } + } + + fn clone_from(&mut self, source: &Self) { + self.data.clone_from(&source.data); + } +} + #[stable(feature = "rust1", since = "1.0.0")] impl Default for BinaryHeap { #[inline] diff --git a/src/libcollections/lib.rs b/src/libcollections/lib.rs index 34bd1345fcb3b..03ee8ba31b1d2 100644 --- a/src/libcollections/lib.rs +++ b/src/libcollections/lib.rs @@ -62,7 +62,7 @@ #![feature(unsafe_no_drop_flag, filling_drop)] #![feature(decode_utf16)] #![feature(utf8_error)] -#![cfg_attr(test, feature(rand, test))] +#![cfg_attr(test, feature(clone_from_slice, rand, test))] #![feature(no_std)] #![no_std] diff --git a/src/libcollections/string.rs b/src/libcollections/string.rs index bb65d7469ab14..ba921fed68b1d 100644 --- a/src/libcollections/string.rs +++ b/src/libcollections/string.rs @@ -30,7 +30,7 @@ use vec::Vec; use boxed::Box; /// A growable string stored as a UTF-8 encoded buffer. -#[derive(Clone, PartialOrd, Eq, Ord)] +#[derive(PartialOrd, Eq, Ord)] #[stable(feature = "rust1", since = "1.0.0")] pub struct String { vec: Vec, @@ -765,6 +765,17 @@ impl fmt::Display for FromUtf16Error { } } +#[stable(feature = "rust1", since = "1.0.0")] +impl Clone for String { + fn clone(&self) -> Self { + String { vec: self.vec.clone() } + } + + fn clone_from(&mut self, source: &Self) { + self.vec.clone_from(&source.vec); + } +} + #[stable(feature = "rust1", since = "1.0.0")] impl FromIterator for String { fn from_iter>(iterable: I) -> String { diff --git a/src/libcollections/vec.rs b/src/libcollections/vec.rs index 4110faa41b324..de3e6f94e8746 100644 --- a/src/libcollections/vec.rs +++ b/src/libcollections/vec.rs @@ -1007,19 +1007,15 @@ impl Clone for Vec { fn clone_from(&mut self, other: &Vec) { // drop anything in self that will not be overwritten - if self.len() > other.len() { - self.truncate(other.len()) - } + self.truncate(other.len()); + let len = self.len(); // reuse the contained values' allocations/resources. - for (place, thing) in self.iter_mut().zip(other) { - place.clone_from(thing) - } + self.clone_from_slice(&other[..len]); // self.len <= other.len due to the truncate above, so the // slice here is always in-bounds. - let slice = &other[self.len()..]; - self.push_all(slice); + self.push_all(&other[len..]); } }