Skip to content

Commit 030bc49

Browse files
authored
Auto merge of #37094 - fhartwig:spec-extend-from-slice, r=alexcrichton
Specialize Vec::extend to Vec::extend_from_slice I tried using the existing `SpecExtend` as a helper trait for this, but the instances would always conflict with the instances higher up in the file, so I created a new helper trait. Benchmarking `extend` vs `extend_from_slice` with an slice of 1000 `u64`s gives the following results: ``` before: running 2 tests test tests::bench_extend_from_slice ... bench: 166 ns/iter (+/- 78) test tests::bench_extend_trait ... bench: 1,187 ns/iter (+/- 697) after: running 2 tests test tests::bench_extend_from_slice ... bench: 149 ns/iter (+/- 87) test tests::bench_extend_trait ... bench: 138 ns/iter (+/- 70) ```
2 parents e1b6777 + 63ee8d0 commit 030bc49

File tree

1 file changed

+18
-1
lines changed

1 file changed

+18
-1
lines changed

src/libcollections/vec.rs

+18-1
Original file line numberDiff line numberDiff line change
@@ -1614,7 +1614,24 @@ impl<T> Vec<T> {
16141614
#[stable(feature = "extend_ref", since = "1.2.0")]
16151615
impl<'a, T: 'a + Copy> Extend<&'a T> for Vec<T> {
16161616
fn extend<I: IntoIterator<Item = &'a T>>(&mut self, iter: I) {
1617-
self.extend(iter.into_iter().cloned());
1617+
<I as SpecExtendVec<T>>::extend_vec(iter, self);
1618+
}
1619+
}
1620+
1621+
// helper trait for specialization of Vec's Extend impl
1622+
trait SpecExtendVec<T> {
1623+
fn extend_vec(self, vec: &mut Vec<T>);
1624+
}
1625+
1626+
impl <'a, T: 'a + Copy, I: IntoIterator<Item=&'a T>> SpecExtendVec<T> for I {
1627+
default fn extend_vec(self, vec: &mut Vec<T>) {
1628+
vec.extend(self.into_iter().cloned());
1629+
}
1630+
}
1631+
1632+
impl<'a, T: Copy> SpecExtendVec<T> for &'a [T] {
1633+
fn extend_vec(self, vec: &mut Vec<T>) {
1634+
vec.extend_from_slice(self);
16181635
}
16191636
}
16201637

0 commit comments

Comments
 (0)