pull/418/merge
Guilliam Xavier 1 month ago committed by GitHub
commit cebba8b848
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -41,11 +41,13 @@ impl<T: Clone> Vec<T> {
fn push_all(&mut self, to_push: &[T]) {
self.reserve(to_push.len());
unsafe {
let end_ptr = self.as_mut_ptr().add(self.len());
// can't overflow because we just reserved this
self.set_len(self.len() + to_push.len());
for (i, x) in to_push.iter().enumerate() {
self.ptr().add(i).write(x.clone());
end_ptr.add(i).write(x.clone());
}
}
}

Loading…
Cancel
Save