]> git.lizzy.rs Git - rust.git/blob - src/libcollections/vec.rs
fix fallout
[rust.git] / src / libcollections / vec.rs
1 // Copyright 2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 //! A growable list type with heap-allocated contents, written `Vec<T>` but pronounced 'vector.'
12 //!
13 //! Vectors have `O(1)` indexing, push (to the end) and pop (from the end).
14 //!
15 //! # Examples
16 //!
17 //! Explicitly creating a `Vec<T>` with `new()`:
18 //!
19 //! ```
20 //! let xs: Vec<i32> = Vec::new();
21 //! ```
22 //!
23 //! Using the `vec!` macro:
24 //!
25 //! ```
26 //! let ys: Vec<i32> = vec![];
27 //!
28 //! let zs = vec![1i32, 2, 3, 4, 5];
29 //! ```
30 //!
31 //! Push:
32 //!
33 //! ```
34 //! let mut xs = vec![1i32, 2];
35 //!
36 //! xs.push(3);
37 //! ```
38 //!
39 //! And pop:
40 //!
41 //! ```
42 //! let mut xs = vec![1i32, 2];
43 //!
44 //! let two = xs.pop();
45 //! ```
46
47 #![stable(feature = "rust1", since = "1.0.0")]
48
49 use core::prelude::*;
50
51 use alloc::boxed::Box;
52 use alloc::heap::{EMPTY, allocate, reallocate, deallocate};
53 use core::borrow::{Cow, IntoCow};
54 use core::cmp::max;
55 use core::cmp::{Ordering};
56 use core::default::Default;
57 use core::fmt;
58 use core::hash::{self, Hash};
59 use core::iter::{repeat, FromIterator, IntoIterator};
60 use core::marker::{ContravariantLifetime, InvariantType};
61 use core::mem;
62 use core::nonzero::NonZero;
63 use core::num::{Int, UnsignedInt};
64 use core::ops::{Index, IndexMut, Deref, Add};
65 use core::ops;
66 use core::ptr;
67 use core::raw::Slice as RawSlice;
68 use core::slice;
69 use core::uint;
70
71 /// A growable list type, written `Vec<T>` but pronounced 'vector.'
72 ///
73 /// # Examples
74 ///
75 /// ```
76 /// let mut vec = Vec::new();
77 /// vec.push(1i);
78 /// vec.push(2i);
79 ///
80 /// assert_eq!(vec.len(), 2);
81 /// assert_eq!(vec[0], 1);
82 ///
83 /// assert_eq!(vec.pop(), Some(2));
84 /// assert_eq!(vec.len(), 1);
85 ///
86 /// vec[0] = 7i;
87 /// assert_eq!(vec[0], 7);
88 ///
89 /// vec.push_all(&[1, 2, 3]);
90 ///
91 /// for x in vec.iter() {
92 ///     println!("{}", x);
93 /// }
94 /// assert_eq!(vec, vec![7i, 1, 2, 3]);
95 /// ```
96 ///
97 /// The `vec!` macro is provided to make initialization more convenient:
98 ///
99 /// ```
100 /// let mut vec = vec![1i, 2i, 3i];
101 /// vec.push(4);
102 /// assert_eq!(vec, vec![1, 2, 3, 4]);
103 /// ```
104 ///
105 /// Use a `Vec<T>` as an efficient stack:
106 ///
107 /// ```
108 /// let mut stack = Vec::new();
109 ///
110 /// stack.push(1i);
111 /// stack.push(2i);
112 /// stack.push(3i);
113 ///
114 /// loop {
115 ///     let top = match stack.pop() {
116 ///         None => break, // empty
117 ///         Some(x) => x,
118 ///     };
119 ///     // Prints 3, 2, 1
120 ///     println!("{}", top);
121 /// }
122 /// ```
123 ///
124 /// # Capacity and reallocation
125 ///
126 /// The capacity of a vector is the amount of space allocated for any future elements that will be
127 /// added onto the vector. This is not to be confused with the *length* of a vector, which
128 /// specifies the number of actual elements within the vector. If a vector's length exceeds its
129 /// capacity, its capacity will automatically be increased, but its elements will have to be
130 /// reallocated.
131 ///
132 /// For example, a vector with capacity 10 and length 0 would be an empty vector with space for 10
133 /// more elements. Pushing 10 or fewer elements onto the vector will not change its capacity or
134 /// cause reallocation to occur. However, if the vector's length is increased to 11, it will have
135 /// to reallocate, which can be slow. For this reason, it is recommended to use
136 /// `Vec::with_capacity` whenever possible to specify how big the vector is expected to get.
137 #[unsafe_no_drop_flag]
138 #[stable(feature = "rust1", since = "1.0.0")]
139 pub struct Vec<T> {
140     ptr: NonZero<*mut T>,
141     len: uint,
142     cap: uint,
143 }
144
145 unsafe impl<T: Send> Send for Vec<T> { }
146 unsafe impl<T: Sync> Sync for Vec<T> { }
147
148 ////////////////////////////////////////////////////////////////////////////////
149 // Inherent methods
150 ////////////////////////////////////////////////////////////////////////////////
151
152 impl<T> Vec<T> {
153     /// Constructs a new, empty `Vec<T>`.
154     ///
155     /// The vector will not allocate until elements are pushed onto it.
156     ///
157     /// # Examples
158     ///
159     /// ```
160     /// let mut vec: Vec<int> = Vec::new();
161     /// ```
162     #[inline]
163     #[stable(feature = "rust1", since = "1.0.0")]
164     pub fn new() -> Vec<T> {
165         // We want ptr to never be NULL so instead we set it to some arbitrary
166         // non-null value which is fine since we never call deallocate on the ptr
167         // if cap is 0. The reason for this is because the pointer of a slice
168         // being NULL would break the null pointer optimization for enums.
169         Vec { ptr: unsafe { NonZero::new(EMPTY as *mut T) }, len: 0, cap: 0 }
170     }
171
172     /// Constructs a new, empty `Vec<T>` with the specified capacity.
173     ///
174     /// The vector will be able to hold exactly `capacity` elements without reallocating. If
175     /// `capacity` is 0, the vector will not allocate.
176     ///
177     /// It is important to note that this function does not specify the *length* of the returned
178     /// vector, but only the *capacity*. (For an explanation of the difference between length and
179     /// capacity, see the main `Vec<T>` docs above, 'Capacity and reallocation'.)
180     ///
181     /// # Examples
182     ///
183     /// ```
184     /// let mut vec: Vec<int> = Vec::with_capacity(10);
185     ///
186     /// // The vector contains no items, even though it has capacity for more
187     /// assert_eq!(vec.len(), 0);
188     ///
189     /// // These are all done without reallocating...
190     /// for i in 0i..10 {
191     ///     vec.push(i);
192     /// }
193     ///
194     /// // ...but this may make the vector reallocate
195     /// vec.push(11);
196     /// ```
197     #[inline]
198     #[stable(feature = "rust1", since = "1.0.0")]
199     pub fn with_capacity(capacity: uint) -> Vec<T> {
200         if mem::size_of::<T>() == 0 {
201             Vec { ptr: unsafe { NonZero::new(EMPTY as *mut T) }, len: 0, cap: uint::MAX }
202         } else if capacity == 0 {
203             Vec::new()
204         } else {
205             let size = capacity.checked_mul(mem::size_of::<T>())
206                                .expect("capacity overflow");
207             let ptr = unsafe { allocate(size, mem::min_align_of::<T>()) };
208             if ptr.is_null() { ::alloc::oom() }
209             Vec { ptr: unsafe { NonZero::new(ptr as *mut T) }, len: 0, cap: capacity }
210         }
211     }
212
213     /// Creates a `Vec<T>` directly from the raw components of another vector.
214     ///
215     /// This is highly unsafe, due to the number of invariants that aren't checked.
216     ///
217     /// # Examples
218     ///
219     /// ```
220     /// use std::ptr;
221     /// use std::mem;
222     ///
223     /// fn main() {
224     ///     let mut v = vec![1i, 2, 3];
225     ///
226     ///     // Pull out the various important pieces of information about `v`
227     ///     let p = v.as_mut_ptr();
228     ///     let len = v.len();
229     ///     let cap = v.capacity();
230     ///
231     ///     unsafe {
232     ///         // Cast `v` into the void: no destructor run, so we are in
233     ///         // complete control of the allocation to which `p` points.
234     ///         mem::forget(v);
235     ///
236     ///         // Overwrite memory with 4, 5, 6
237     ///         for i in 0..len as int {
238     ///             ptr::write(p.offset(i), 4 + i);
239     ///         }
240     ///
241     ///         // Put everything back together into a Vec
242     ///         let rebuilt = Vec::from_raw_parts(p, len, cap);
243     ///         assert_eq!(rebuilt, vec![4i, 5i, 6i]);
244     ///     }
245     /// }
246     /// ```
247     #[stable(feature = "rust1", since = "1.0.0")]
248     pub unsafe fn from_raw_parts(ptr: *mut T, length: uint,
249                                  capacity: uint) -> Vec<T> {
250         Vec { ptr: NonZero::new(ptr), len: length, cap: capacity }
251     }
252
253     /// Creates a vector by copying the elements from a raw pointer.
254     ///
255     /// This function will copy `elts` contiguous elements starting at `ptr` into a new allocation
256     /// owned by the returned `Vec<T>`. The elements of the buffer are copied into the vector
257     /// without cloning, as if `ptr::read()` were called on them.
258     #[inline]
259     #[unstable(feature = "collections",
260                reason = "may be better expressed via composition")]
261     pub unsafe fn from_raw_buf(ptr: *const T, elts: uint) -> Vec<T> {
262         let mut dst = Vec::with_capacity(elts);
263         dst.set_len(elts);
264         ptr::copy_nonoverlapping_memory(dst.as_mut_ptr(), ptr, elts);
265         dst
266     }
267
268     /// Returns the number of elements the vector can hold without
269     /// reallocating.
270     ///
271     /// # Examples
272     ///
273     /// ```
274     /// let vec: Vec<int> = Vec::with_capacity(10);
275     /// assert_eq!(vec.capacity(), 10);
276     /// ```
277     #[inline]
278     #[stable(feature = "rust1", since = "1.0.0")]
279     pub fn capacity(&self) -> uint {
280         self.cap
281     }
282
283     /// Reserves capacity for at least `additional` more elements to be inserted in the given
284     /// `Vec<T>`. The collection may reserve more space to avoid frequent reallocations.
285     ///
286     /// # Panics
287     ///
288     /// Panics if the new capacity overflows `uint`.
289     ///
290     /// # Examples
291     ///
292     /// ```
293     /// let mut vec: Vec<int> = vec![1];
294     /// vec.reserve(10);
295     /// assert!(vec.capacity() >= 11);
296     /// ```
297     #[stable(feature = "rust1", since = "1.0.0")]
298     pub fn reserve(&mut self, additional: uint) {
299         if self.cap - self.len < additional {
300             let err_msg = "Vec::reserve: `uint` overflow";
301             let new_cap = self.len.checked_add(additional).expect(err_msg)
302                 .checked_next_power_of_two().expect(err_msg);
303             self.grow_capacity(new_cap);
304         }
305     }
306
307     /// Reserves the minimum capacity for exactly `additional` more elements to
308     /// be inserted in the given `Vec<T>`. Does nothing if the capacity is already
309     /// sufficient.
310     ///
311     /// Note that the allocator may give the collection more space than it
312     /// requests. Therefore capacity can not be relied upon to be precisely
313     /// minimal. Prefer `reserve` if future insertions are expected.
314     ///
315     /// # Panics
316     ///
317     /// Panics if the new capacity overflows `uint`.
318     ///
319     /// # Examples
320     ///
321     /// ```
322     /// let mut vec: Vec<int> = vec![1];
323     /// vec.reserve_exact(10);
324     /// assert!(vec.capacity() >= 11);
325     /// ```
326     #[stable(feature = "rust1", since = "1.0.0")]
327     pub fn reserve_exact(&mut self, additional: uint) {
328         if self.cap - self.len < additional {
329             match self.len.checked_add(additional) {
330                 None => panic!("Vec::reserve: `uint` overflow"),
331                 Some(new_cap) => self.grow_capacity(new_cap)
332             }
333         }
334     }
335
336     /// Shrinks the capacity of the vector as much as possible.
337     ///
338     /// It will drop down as close as possible to the length but the allocator
339     /// may still inform the vector that there is space for a few more elements.
340     ///
341     /// # Examples
342     ///
343     /// ```
344     /// let mut vec: Vec<int> = Vec::with_capacity(10);
345     /// vec.push_all(&[1, 2, 3]);
346     /// assert_eq!(vec.capacity(), 10);
347     /// vec.shrink_to_fit();
348     /// assert!(vec.capacity() >= 3);
349     /// ```
350     #[stable(feature = "rust1", since = "1.0.0")]
351     pub fn shrink_to_fit(&mut self) {
352         if mem::size_of::<T>() == 0 { return }
353
354         if self.len == 0 {
355             if self.cap != 0 {
356                 unsafe {
357                     dealloc(*self.ptr, self.cap)
358                 }
359                 self.cap = 0;
360             }
361         } else if self.cap != self.len {
362             unsafe {
363                 // Overflow check is unnecessary as the vector is already at
364                 // least this large.
365                 let ptr = reallocate(*self.ptr as *mut u8,
366                                      self.cap * mem::size_of::<T>(),
367                                      self.len * mem::size_of::<T>(),
368                                      mem::min_align_of::<T>()) as *mut T;
369                 if ptr.is_null() { ::alloc::oom() }
370                 self.ptr = NonZero::new(ptr);
371             }
372             self.cap = self.len;
373         }
374     }
375
376     /// Convert the vector into Box<[T]>.
377     ///
378     /// Note that this will drop any excess capacity. Calling this and
379     /// converting back to a vector with `into_vec()` is equivalent to calling
380     /// `shrink_to_fit()`.
381     #[unstable(feature = "collections")]
382     pub fn into_boxed_slice(mut self) -> Box<[T]> {
383         self.shrink_to_fit();
384         unsafe {
385             let xs: Box<[T]> = mem::transmute(self.as_mut_slice());
386             mem::forget(self);
387             xs
388         }
389     }
390
391     /// Shorten a vector, dropping excess elements.
392     ///
393     /// If `len` is greater than the vector's current length, this has no
394     /// effect.
395     ///
396     /// # Examples
397     ///
398     /// ```
399     /// let mut vec = vec![1i, 2, 3, 4];
400     /// vec.truncate(2);
401     /// assert_eq!(vec, vec![1, 2]);
402     /// ```
403     #[stable(feature = "rust1", since = "1.0.0")]
404     pub fn truncate(&mut self, len: uint) {
405         unsafe {
406             // drop any extra elements
407             while len < self.len {
408                 // decrement len before the read(), so a panic on Drop doesn't
409                 // re-drop the just-failed value.
410                 self.len -= 1;
411                 ptr::read(self.get_unchecked(self.len));
412             }
413         }
414     }
415
416     /// Returns a mutable slice of the elements of `self`.
417     ///
418     /// # Examples
419     ///
420     /// ```
421     /// fn foo(slice: &mut [int]) {}
422     ///
423     /// let mut vec = vec![1i, 2];
424     /// foo(vec.as_mut_slice());
425     /// ```
426     #[inline]
427     #[stable(feature = "rust1", since = "1.0.0")]
428     pub fn as_mut_slice<'a>(&'a mut self) -> &'a mut [T] {
429         unsafe {
430             mem::transmute(RawSlice {
431                 data: *self.ptr,
432                 len: self.len,
433             })
434         }
435     }
436
437     /// Creates a consuming iterator, that is, one that moves each value out of
438     /// the vector (from start to end). The vector cannot be used after calling
439     /// this.
440     ///
441     /// # Examples
442     ///
443     /// ```
444     /// let v = vec!["a".to_string(), "b".to_string()];
445     /// for s in v.into_iter() {
446     ///     // s has type String, not &String
447     ///     println!("{}", s);
448     /// }
449     /// ```
450     #[inline]
451     #[stable(feature = "rust1", since = "1.0.0")]
452     pub fn into_iter(self) -> IntoIter<T> {
453         unsafe {
454             let ptr = *self.ptr;
455             let cap = self.cap;
456             let begin = ptr as *const T;
457             let end = if mem::size_of::<T>() == 0 {
458                 (ptr as uint + self.len()) as *const T
459             } else {
460                 ptr.offset(self.len() as int) as *const T
461             };
462             mem::forget(self);
463             IntoIter { allocation: ptr, cap: cap, ptr: begin, end: end }
464         }
465     }
466
467     /// Sets the length of a vector.
468     ///
469     /// This will explicitly set the size of the vector, without actually
470     /// modifying its buffers, so it is up to the caller to ensure that the
471     /// vector is actually the specified size.
472     ///
473     /// # Examples
474     ///
475     /// ```
476     /// let mut v = vec![1u, 2, 3, 4];
477     /// unsafe {
478     ///     v.set_len(1);
479     /// }
480     /// ```
481     #[inline]
482     #[stable(feature = "rust1", since = "1.0.0")]
483     pub unsafe fn set_len(&mut self, len: uint) {
484         self.len = len;
485     }
486
487     /// Removes an element from anywhere in the vector and return it, replacing
488     /// it with the last element.
489     ///
490     /// This does not preserve ordering, but is O(1).
491     ///
492     /// # Panics
493     ///
494     /// Panics if `index` is out of bounds.
495     ///
496     /// # Examples
497     ///
498     /// ```
499     /// let mut v = vec!["foo", "bar", "baz", "qux"];
500     ///
501     /// assert_eq!(v.swap_remove(1), "bar");
502     /// assert_eq!(v, vec!["foo", "qux", "baz"]);
503     ///
504     /// assert_eq!(v.swap_remove(0), "foo");
505     /// assert_eq!(v, vec!["baz", "qux"]);
506     /// ```
507     #[inline]
508     #[stable(feature = "rust1", since = "1.0.0")]
509     pub fn swap_remove(&mut self, index: uint) -> T {
510         let length = self.len();
511         self.swap(index, length - 1);
512         self.pop().unwrap()
513     }
514
515     /// Inserts an element at position `index` within the vector, shifting all
516     /// elements after position `i` one position to the right.
517     ///
518     /// # Panics
519     ///
520     /// Panics if `index` is not between `0` and the vector's length (both
521     /// bounds inclusive).
522     ///
523     /// # Examples
524     ///
525     /// ```
526     /// let mut vec = vec![1i, 2, 3];
527     /// vec.insert(1, 4);
528     /// assert_eq!(vec, vec![1, 4, 2, 3]);
529     /// vec.insert(4, 5);
530     /// assert_eq!(vec, vec![1, 4, 2, 3, 5]);
531     /// ```
532     #[stable(feature = "rust1", since = "1.0.0")]
533     pub fn insert(&mut self, index: uint, element: T) {
534         let len = self.len();
535         assert!(index <= len);
536         // space for the new element
537         self.reserve(1);
538
539         unsafe { // infallible
540             // The spot to put the new value
541             {
542                 let p = self.as_mut_ptr().offset(index as int);
543                 // Shift everything over to make space. (Duplicating the
544                 // `index`th element into two consecutive places.)
545                 ptr::copy_memory(p.offset(1), &*p, len - index);
546                 // Write it in, overwriting the first copy of the `index`th
547                 // element.
548                 ptr::write(&mut *p, element);
549             }
550             self.set_len(len + 1);
551         }
552     }
553
554     /// Removes and returns the element at position `index` within the vector,
555     /// shifting all elements after position `index` one position to the left.
556     ///
557     /// # Panics
558     ///
559     /// Panics if `i` is out of bounds.
560     ///
561     /// # Examples
562     ///
563     /// ```
564     /// let mut v = vec![1i, 2, 3];
565     /// assert_eq!(v.remove(1), 2);
566     /// assert_eq!(v, vec![1, 3]);
567     /// ```
568     #[stable(feature = "rust1", since = "1.0.0")]
569     pub fn remove(&mut self, index: uint) -> T {
570         let len = self.len();
571         assert!(index < len);
572         unsafe { // infallible
573             let ret;
574             {
575                 // the place we are taking from.
576                 let ptr = self.as_mut_ptr().offset(index as int);
577                 // copy it out, unsafely having a copy of the value on
578                 // the stack and in the vector at the same time.
579                 ret = ptr::read(ptr);
580
581                 // Shift everything down to fill in that spot.
582                 ptr::copy_memory(ptr, &*ptr.offset(1), len - index - 1);
583             }
584             self.set_len(len - 1);
585             ret
586         }
587     }
588
589     /// Retains only the elements specified by the predicate.
590     ///
591     /// In other words, remove all elements `e` such that `f(&e)` returns false.
592     /// This method operates in place and preserves the order of the retained
593     /// elements.
594     ///
595     /// # Examples
596     ///
597     /// ```
598     /// let mut vec = vec![1i, 2, 3, 4];
599     /// vec.retain(|&x| x%2 == 0);
600     /// assert_eq!(vec, vec![2, 4]);
601     /// ```
602     #[stable(feature = "rust1", since = "1.0.0")]
603     pub fn retain<F>(&mut self, mut f: F) where F: FnMut(&T) -> bool {
604         let len = self.len();
605         let mut del = 0u;
606         {
607             let v = self.as_mut_slice();
608
609             for i in 0u..len {
610                 if !f(&v[i]) {
611                     del += 1;
612                 } else if del > 0 {
613                     v.swap(i-del, i);
614                 }
615             }
616         }
617         if del > 0 {
618             self.truncate(len - del);
619         }
620     }
621
622     /// Appends an element to the back of a collection.
623     ///
624     /// # Panics
625     ///
626     /// Panics if the number of elements in the vector overflows a `uint`.
627     ///
628     /// # Examples
629     ///
630     /// ```rust
631     /// let mut vec = vec!(1i, 2);
632     /// vec.push(3);
633     /// assert_eq!(vec, vec!(1, 2, 3));
634     /// ```
635     #[inline]
636     #[stable(feature = "rust1", since = "1.0.0")]
637     pub fn push(&mut self, value: T) {
638         if mem::size_of::<T>() == 0 {
639             // zero-size types consume no memory, so we can't rely on the
640             // address space running out
641             self.len = self.len.checked_add(1).expect("length overflow");
642             unsafe { mem::forget(value); }
643             return
644         }
645         if self.len == self.cap {
646             let old_size = self.cap * mem::size_of::<T>();
647             let size = max(old_size, 2 * mem::size_of::<T>()) * 2;
648             if old_size > size { panic!("capacity overflow") }
649             unsafe {
650                 let ptr = alloc_or_realloc(*self.ptr, old_size, size);
651                 if ptr.is_null() { ::alloc::oom() }
652                 self.ptr = NonZero::new(ptr);
653             }
654             self.cap = max(self.cap, 2) * 2;
655         }
656
657         unsafe {
658             let end = (*self.ptr).offset(self.len as int);
659             ptr::write(&mut *end, value);
660             self.len += 1;
661         }
662     }
663
664     /// Removes the last element from a vector and returns it, or `None` if it is empty.
665     ///
666     /// # Examples
667     ///
668     /// ```rust
669     /// let mut vec = vec![1i, 2, 3];
670     /// assert_eq!(vec.pop(), Some(3));
671     /// assert_eq!(vec, vec![1, 2]);
672     /// ```
673     #[inline]
674     #[stable(feature = "rust1", since = "1.0.0")]
675     pub fn pop(&mut self) -> Option<T> {
676         if self.len == 0 {
677             None
678         } else {
679             unsafe {
680                 self.len -= 1;
681                 Some(ptr::read(self.get_unchecked(self.len())))
682             }
683         }
684     }
685
686     /// Moves all the elements of `other` into `Self`, leaving `other` empty.
687     ///
688     /// # Panics
689     ///
690     /// Panics if the number of elements in the vector overflows a `uint`.
691     ///
692     /// # Examples
693     /// ```rust
694     /// let mut vec = vec![1, 2, 3];
695     /// let mut vec2 = vec![4, 5, 6];
696     /// vec.append(&mut vec2);
697     /// assert_eq!(vec, vec![1, 2, 3, 4, 5, 6]);
698     /// assert_eq!(vec2, vec![]);
699     /// ```
700     #[inline]
701     #[unstable(feature = "collections",
702                reason = "new API, waiting for dust to settle")]
703     pub fn append(&mut self, other: &mut Self) {
704         if mem::size_of::<T>() == 0 {
705             // zero-size types consume no memory, so we can't rely on the
706             // address space running out
707             self.len = self.len.checked_add(other.len()).expect("length overflow");
708             unsafe { other.set_len(0) }
709             return;
710         }
711         self.reserve(other.len());
712         let len = self.len();
713         unsafe {
714             ptr::copy_nonoverlapping_memory(
715                 self.get_unchecked_mut(len),
716                 other.as_ptr(),
717                 other.len());
718         }
719
720         self.len += other.len();
721         unsafe { other.set_len(0); }
722     }
723
724     /// Creates a draining iterator that clears the `Vec` and iterates over
725     /// the removed items from start to end.
726     ///
727     /// # Examples
728     ///
729     /// ```
730     /// let mut v = vec!["a".to_string(), "b".to_string()];
731     /// for s in v.drain() {
732     ///     // s has type String, not &String
733     ///     println!("{}", s);
734     /// }
735     /// assert!(v.is_empty());
736     /// ```
737     #[inline]
738     #[unstable(feature = "collections",
739                reason = "matches collection reform specification, waiting for dust to settle")]
740     pub fn drain<'a>(&'a mut self) -> Drain<'a, T> {
741         unsafe {
742             let begin = *self.ptr as *const T;
743             let end = if mem::size_of::<T>() == 0 {
744                 (*self.ptr as uint + self.len()) as *const T
745             } else {
746                 (*self.ptr).offset(self.len() as int) as *const T
747             };
748             self.set_len(0);
749             Drain {
750                 ptr: begin,
751                 end: end,
752                 marker: ContravariantLifetime,
753             }
754         }
755     }
756
757     /// Clears the vector, removing all values.
758     ///
759     /// # Examples
760     ///
761     /// ```
762     /// let mut v = vec![1i, 2, 3];
763     ///
764     /// v.clear();
765     ///
766     /// assert!(v.is_empty());
767     /// ```
768     #[inline]
769     #[stable(feature = "rust1", since = "1.0.0")]
770     pub fn clear(&mut self) {
771         self.truncate(0)
772     }
773
774     /// Returns the number of elements in the vector.
775     ///
776     /// # Examples
777     ///
778     /// ```
779     /// let a = vec![1i, 2, 3];
780     /// assert_eq!(a.len(), 3);
781     /// ```
782     #[inline]
783     #[stable(feature = "rust1", since = "1.0.0")]
784     pub fn len(&self) -> uint { self.len }
785
786     /// Returns `true` if the vector contains no elements.
787     ///
788     /// # Examples
789     ///
790     /// ```
791     /// let mut v = Vec::new();
792     /// assert!(v.is_empty());
793     ///
794     /// v.push(1i);
795     /// assert!(!v.is_empty());
796     /// ```
797     #[stable(feature = "rust1", since = "1.0.0")]
798     pub fn is_empty(&self) -> bool { self.len() == 0 }
799
800     /// Converts a `Vec<T>` to a `Vec<U>` where `T` and `U` have the same
801     /// size and in case they are not zero-sized the same minimal alignment.
802     ///
803     /// # Panics
804     ///
805     /// Panics if `T` and `U` have differing sizes or are not zero-sized and
806     /// have differing minimal alignments.
807     ///
808     /// # Examples
809     ///
810     /// ```
811     /// let v = vec![0u, 1, 2];
812     /// let w = v.map_in_place(|i| i + 3);
813     /// assert_eq!(w.as_slice(), [3, 4, 5].as_slice());
814     ///
815     /// #[derive(PartialEq, Debug)]
816     /// struct Newtype(u8);
817     /// let bytes = vec![0x11, 0x22];
818     /// let newtyped_bytes = bytes.map_in_place(|x| Newtype(x));
819     /// assert_eq!(newtyped_bytes.as_slice(), [Newtype(0x11), Newtype(0x22)].as_slice());
820     /// ```
821     #[unstable(feature = "collections",
822                reason = "API may change to provide stronger guarantees")]
823     pub fn map_in_place<U, F>(self, mut f: F) -> Vec<U> where F: FnMut(T) -> U {
824         // FIXME: Assert statically that the types `T` and `U` have the same
825         // size.
826         assert!(mem::size_of::<T>() == mem::size_of::<U>());
827
828         let mut vec = self;
829
830         if mem::size_of::<T>() != 0 {
831             // FIXME: Assert statically that the types `T` and `U` have the
832             // same minimal alignment in case they are not zero-sized.
833
834             // These asserts are necessary because the `min_align_of` of the
835             // types are passed to the allocator by `Vec`.
836             assert!(mem::min_align_of::<T>() == mem::min_align_of::<U>());
837
838             // This `as int` cast is safe, because the size of the elements of the
839             // vector is not 0, and:
840             //
841             // 1) If the size of the elements in the vector is 1, the `int` may
842             //    overflow, but it has the correct bit pattern so that the
843             //    `.offset()` function will work.
844             //
845             //    Example:
846             //        Address space 0x0-0xF.
847             //        `u8` array at: 0x1.
848             //        Size of `u8` array: 0x8.
849             //        Calculated `offset`: -0x8.
850             //        After `array.offset(offset)`: 0x9.
851             //        (0x1 + 0x8 = 0x1 - 0x8)
852             //
853             // 2) If the size of the elements in the vector is >1, the `uint` ->
854             //    `int` conversion can't overflow.
855             let offset = vec.len() as int;
856             let start = vec.as_mut_ptr();
857
858             let mut pv = PartialVecNonZeroSized {
859                 vec: vec,
860
861                 start_t: start,
862                 // This points inside the vector, as the vector has length
863                 // `offset`.
864                 end_t: unsafe { start.offset(offset) },
865                 start_u: start as *mut U,
866                 end_u: start as *mut U,
867             };
868             //  start_t
869             //  start_u
870             //  |
871             // +-+-+-+-+-+-+
872             // |T|T|T|...|T|
873             // +-+-+-+-+-+-+
874             //  |           |
875             //  end_u       end_t
876
877             while pv.end_u as *mut T != pv.end_t {
878                 unsafe {
879                     //  start_u start_t
880                     //  |       |
881                     // +-+-+-+-+-+-+-+-+-+
882                     // |U|...|U|T|T|...|T|
883                     // +-+-+-+-+-+-+-+-+-+
884                     //          |         |
885                     //          end_u     end_t
886
887                     let t = ptr::read(pv.start_t);
888                     //  start_u start_t
889                     //  |       |
890                     // +-+-+-+-+-+-+-+-+-+
891                     // |U|...|U|X|T|...|T|
892                     // +-+-+-+-+-+-+-+-+-+
893                     //          |         |
894                     //          end_u     end_t
895                     // We must not panic here, one cell is marked as `T`
896                     // although it is not `T`.
897
898                     pv.start_t = pv.start_t.offset(1);
899                     //  start_u   start_t
900                     //  |         |
901                     // +-+-+-+-+-+-+-+-+-+
902                     // |U|...|U|X|T|...|T|
903                     // +-+-+-+-+-+-+-+-+-+
904                     //          |         |
905                     //          end_u     end_t
906                     // We may panic again.
907
908                     // The function given by the user might panic.
909                     let u = f(t);
910
911                     ptr::write(pv.end_u, u);
912                     //  start_u   start_t
913                     //  |         |
914                     // +-+-+-+-+-+-+-+-+-+
915                     // |U|...|U|U|T|...|T|
916                     // +-+-+-+-+-+-+-+-+-+
917                     //          |         |
918                     //          end_u     end_t
919                     // We should not panic here, because that would leak the `U`
920                     // pointed to by `end_u`.
921
922                     pv.end_u = pv.end_u.offset(1);
923                     //  start_u   start_t
924                     //  |         |
925                     // +-+-+-+-+-+-+-+-+-+
926                     // |U|...|U|U|T|...|T|
927                     // +-+-+-+-+-+-+-+-+-+
928                     //            |       |
929                     //            end_u   end_t
930                     // We may panic again.
931                 }
932             }
933
934             //  start_u     start_t
935             //  |           |
936             // +-+-+-+-+-+-+
937             // |U|...|U|U|U|
938             // +-+-+-+-+-+-+
939             //              |
940             //              end_t
941             //              end_u
942             // Extract `vec` and prevent the destructor of
943             // `PartialVecNonZeroSized` from running. Note that none of the
944             // function calls can panic, thus no resources can be leaked (as the
945             // `vec` member of `PartialVec` is the only one which holds
946             // allocations -- and it is returned from this function. None of
947             // this can panic.
948             unsafe {
949                 let vec_len = pv.vec.len();
950                 let vec_cap = pv.vec.capacity();
951                 let vec_ptr = pv.vec.as_mut_ptr() as *mut U;
952                 mem::forget(pv);
953                 Vec::from_raw_parts(vec_ptr, vec_len, vec_cap)
954             }
955         } else {
956             // Put the `Vec` into the `PartialVecZeroSized` structure and
957             // prevent the destructor of the `Vec` from running. Since the
958             // `Vec` contained zero-sized objects, it did not allocate, so we
959             // are not leaking memory here.
960             let mut pv = PartialVecZeroSized::<T,U> {
961                 num_t: vec.len(),
962                 num_u: 0,
963                 marker_t: InvariantType,
964                 marker_u: InvariantType,
965             };
966             unsafe { mem::forget(vec); }
967
968             while pv.num_t != 0 {
969                 unsafe {
970                     // Create a `T` out of thin air and decrement `num_t`. This
971                     // must not panic between these steps, as otherwise a
972                     // destructor of `T` which doesn't exist runs.
973                     let t = mem::uninitialized();
974                     pv.num_t -= 1;
975
976                     // The function given by the user might panic.
977                     let u = f(t);
978
979                     // Forget the `U` and increment `num_u`. This increment
980                     // cannot overflow the `uint` as we only do this for a
981                     // number of times that fits into a `uint` (and start with
982                     // `0`). Again, we should not panic between these steps.
983                     mem::forget(u);
984                     pv.num_u += 1;
985                 }
986             }
987             // Create a `Vec` from our `PartialVecZeroSized` and make sure the
988             // destructor of the latter will not run. None of this can panic.
989             let mut result = Vec::new();
990             unsafe {
991                 result.set_len(pv.num_u);
992                 mem::forget(pv);
993             }
994             result
995         }
996     }
997
998     /// Splits the collection into two at the given index.
999     ///
1000     /// Returns a newly allocated `Self`. `self` contains elements `[0, at)`,
1001     /// and the returned `Self` contains elements `[at, len)`.
1002     ///
1003     /// Note that the capacity of `self` does not change.
1004     ///
1005     /// # Examples
1006     /// ```rust
1007     /// let mut vec = vec![1,2,3];
1008     /// let vec2 = vec.split_off(1);
1009     /// assert_eq!(vec, vec![1]);
1010     /// assert_eq!(vec2, vec![2, 3]);
1011     /// ```
1012     #[inline]
1013     #[unstable(feature = "collections",
1014                reason = "new API, waiting for dust to settle")]
1015     pub fn split_off(&mut self, at: usize) -> Self {
1016         assert!(at < self.len(), "`at` out of bounds");
1017
1018         let other_len = self.len - at;
1019         let mut other = Vec::with_capacity(other_len);
1020
1021         // Unsafely `set_len` and copy items to `other`.
1022         unsafe {
1023             self.set_len(at);
1024             other.set_len(other_len);
1025
1026             ptr::copy_nonoverlapping_memory(
1027                 other.as_mut_ptr(),
1028                 self.as_ptr().offset(at as isize),
1029                 other.len());
1030         }
1031         other
1032     }
1033
1034 }
1035
1036 impl<T: Clone> Vec<T> {
1037     /// Resizes the `Vec` in-place so that `len()` is equal to `new_len`.
1038     ///
1039     /// Calls either `extend()` or `truncate()` depending on whether `new_len`
1040     /// is larger than the current value of `len()` or not.
1041     ///
1042     /// # Examples
1043     ///
1044     /// ```
1045     /// let mut vec = vec!["hello"];
1046     /// vec.resize(3, "world");
1047     /// assert_eq!(vec, vec!["hello", "world", "world"]);
1048     ///
1049     /// let mut vec = vec![1i, 2, 3, 4];
1050     /// vec.resize(2, 0);
1051     /// assert_eq!(vec, vec![1, 2]);
1052     /// ```
1053     #[unstable(feature = "collections",
1054                reason = "matches collection reform specification; waiting for dust to settle")]
1055     pub fn resize(&mut self, new_len: uint, value: T) {
1056         let len = self.len();
1057
1058         if new_len > len {
1059             self.extend(repeat(value).take(new_len - len));
1060         } else {
1061             self.truncate(new_len);
1062         }
1063     }
1064
1065     /// Appends all elements in a slice to the `Vec`.
1066     ///
1067     /// Iterates over the slice `other`, clones each element, and then appends
1068     /// it to this `Vec`. The `other` vector is traversed in-order.
1069     ///
1070     /// # Examples
1071     ///
1072     /// ```
1073     /// let mut vec = vec![1i];
1074     /// vec.push_all(&[2i, 3, 4]);
1075     /// assert_eq!(vec, vec![1, 2, 3, 4]);
1076     /// ```
1077     #[inline]
1078     #[unstable(feature = "collections",
1079                reason = "likely to be replaced by a more optimized extend")]
1080     pub fn push_all(&mut self, other: &[T]) {
1081         self.reserve(other.len());
1082
1083         for i in 0..other.len() {
1084             let len = self.len();
1085
1086             // Unsafe code so this can be optimised to a memcpy (or something similarly
1087             // fast) when T is Copy. LLVM is easily confused, so any extra operations
1088             // during the loop can prevent this optimisation.
1089             unsafe {
1090                 ptr::write(
1091                     self.get_unchecked_mut(len),
1092                     other.get_unchecked(i).clone());
1093                 self.set_len(len + 1);
1094             }
1095         }
1096     }
1097 }
1098
1099 impl<T: PartialEq> Vec<T> {
1100     /// Removes consecutive repeated elements in the vector.
1101     ///
1102     /// If the vector is sorted, this removes all duplicates.
1103     ///
1104     /// # Examples
1105     ///
1106     /// ```
1107     /// let mut vec = vec![1i, 2, 2, 3, 2];
1108     ///
1109     /// vec.dedup();
1110     ///
1111     /// assert_eq!(vec, vec![1i, 2, 3, 2]);
1112     /// ```
1113     #[stable(feature = "rust1", since = "1.0.0")]
1114     pub fn dedup(&mut self) {
1115         unsafe {
1116             // Although we have a mutable reference to `self`, we cannot make
1117             // *arbitrary* changes. The `PartialEq` comparisons could panic, so we
1118             // must ensure that the vector is in a valid state at all time.
1119             //
1120             // The way that we handle this is by using swaps; we iterate
1121             // over all the elements, swapping as we go so that at the end
1122             // the elements we wish to keep are in the front, and those we
1123             // wish to reject are at the back. We can then truncate the
1124             // vector. This operation is still O(n).
1125             //
1126             // Example: We start in this state, where `r` represents "next
1127             // read" and `w` represents "next_write`.
1128             //
1129             //           r
1130             //     +---+---+---+---+---+---+
1131             //     | 0 | 1 | 1 | 2 | 3 | 3 |
1132             //     +---+---+---+---+---+---+
1133             //           w
1134             //
1135             // Comparing self[r] against self[w-1], this is not a duplicate, so
1136             // we swap self[r] and self[w] (no effect as r==w) and then increment both
1137             // r and w, leaving us with:
1138             //
1139             //               r
1140             //     +---+---+---+---+---+---+
1141             //     | 0 | 1 | 1 | 2 | 3 | 3 |
1142             //     +---+---+---+---+---+---+
1143             //               w
1144             //
1145             // Comparing self[r] against self[w-1], this value is a duplicate,
1146             // so we increment `r` but leave everything else unchanged:
1147             //
1148             //                   r
1149             //     +---+---+---+---+---+---+
1150             //     | 0 | 1 | 1 | 2 | 3 | 3 |
1151             //     +---+---+---+---+---+---+
1152             //               w
1153             //
1154             // Comparing self[r] against self[w-1], this is not a duplicate,
1155             // so swap self[r] and self[w] and advance r and w:
1156             //
1157             //                       r
1158             //     +---+---+---+---+---+---+
1159             //     | 0 | 1 | 2 | 1 | 3 | 3 |
1160             //     +---+---+---+---+---+---+
1161             //                   w
1162             //
1163             // Not a duplicate, repeat:
1164             //
1165             //                           r
1166             //     +---+---+---+---+---+---+
1167             //     | 0 | 1 | 2 | 3 | 1 | 3 |
1168             //     +---+---+---+---+---+---+
1169             //                       w
1170             //
1171             // Duplicate, advance r. End of vec. Truncate to w.
1172
1173             let ln = self.len();
1174             if ln < 1 { return; }
1175
1176             // Avoid bounds checks by using unsafe pointers.
1177             let p = self.as_mut_ptr();
1178             let mut r = 1;
1179             let mut w = 1;
1180
1181             while r < ln {
1182                 let p_r = p.offset(r as int);
1183                 let p_wm1 = p.offset((w - 1) as int);
1184                 if *p_r != *p_wm1 {
1185                     if r != w {
1186                         let p_w = p_wm1.offset(1);
1187                         mem::swap(&mut *p_r, &mut *p_w);
1188                     }
1189                     w += 1;
1190                 }
1191                 r += 1;
1192             }
1193
1194             self.truncate(w);
1195         }
1196     }
1197 }
1198
1199 ////////////////////////////////////////////////////////////////////////////////
1200 // Internal methods and functions
1201 ////////////////////////////////////////////////////////////////////////////////
1202
1203 impl<T> Vec<T> {
1204     /// Reserves capacity for exactly `capacity` elements in the given vector.
1205     ///
1206     /// If the capacity for `self` is already equal to or greater than the
1207     /// requested capacity, then no action is taken.
1208     fn grow_capacity(&mut self, capacity: uint) {
1209         if mem::size_of::<T>() == 0 { return }
1210
1211         if capacity > self.cap {
1212             let size = capacity.checked_mul(mem::size_of::<T>())
1213                                .expect("capacity overflow");
1214             unsafe {
1215                 let ptr = alloc_or_realloc(*self.ptr, self.cap * mem::size_of::<T>(), size);
1216                 if ptr.is_null() { ::alloc::oom() }
1217                 self.ptr = NonZero::new(ptr);
1218             }
1219             self.cap = capacity;
1220         }
1221     }
1222 }
1223
1224 // FIXME: #13996: need a way to mark the return value as `noalias`
1225 #[inline(never)]
1226 unsafe fn alloc_or_realloc<T>(ptr: *mut T, old_size: uint, size: uint) -> *mut T {
1227     if old_size == 0 {
1228         allocate(size, mem::min_align_of::<T>()) as *mut T
1229     } else {
1230         reallocate(ptr as *mut u8, old_size, size, mem::min_align_of::<T>()) as *mut T
1231     }
1232 }
1233
1234 #[inline]
1235 unsafe fn dealloc<T>(ptr: *mut T, len: uint) {
1236     if mem::size_of::<T>() != 0 {
1237         deallocate(ptr as *mut u8,
1238                    len * mem::size_of::<T>(),
1239                    mem::min_align_of::<T>())
1240     }
1241 }
1242
1243 ////////////////////////////////////////////////////////////////////////////////
1244 // Common trait implementations for Vec
1245 ////////////////////////////////////////////////////////////////////////////////
1246
1247 #[unstable(feature = "collections")]
1248 impl<T:Clone> Clone for Vec<T> {
1249     fn clone(&self) -> Vec<T> { ::slice::SliceExt::to_vec(self.as_slice()) }
1250
1251     fn clone_from(&mut self, other: &Vec<T>) {
1252         // drop anything in self that will not be overwritten
1253         if self.len() > other.len() {
1254             self.truncate(other.len())
1255         }
1256
1257         // reuse the contained values' allocations/resources.
1258         for (place, thing) in self.iter_mut().zip(other.iter()) {
1259             place.clone_from(thing)
1260         }
1261
1262         // self.len <= other.len due to the truncate above, so the
1263         // slice here is always in-bounds.
1264         let slice = &other[self.len()..];
1265         self.push_all(slice);
1266     }
1267 }
1268
1269 impl<S: hash::Writer + hash::Hasher, T: Hash<S>> Hash<S> for Vec<T> {
1270     #[inline]
1271     fn hash(&self, state: &mut S) {
1272         self.as_slice().hash(state);
1273     }
1274 }
1275
1276 #[stable(feature = "rust1", since = "1.0.0")]
1277 impl<T> Index<uint> for Vec<T> {
1278     type Output = T;
1279
1280     #[inline]
1281     fn index<'a>(&'a self, index: &uint) -> &'a T {
1282         &self.as_slice()[*index]
1283     }
1284 }
1285
1286 #[stable(feature = "rust1", since = "1.0.0")]
1287 impl<T> IndexMut<uint> for Vec<T> {
1288     type Output = T;
1289
1290     #[inline]
1291     fn index_mut<'a>(&'a mut self, index: &uint) -> &'a mut T {
1292         &mut self.as_mut_slice()[*index]
1293     }
1294 }
1295
1296
1297 #[stable(feature = "rust1", since = "1.0.0")]
1298 impl<T> ops::Index<ops::Range<uint>> for Vec<T> {
1299     type Output = [T];
1300     #[inline]
1301     fn index(&self, index: &ops::Range<uint>) -> &[T] {
1302         self.as_slice().index(index)
1303     }
1304 }
1305 #[stable(feature = "rust1", since = "1.0.0")]
1306 impl<T> ops::Index<ops::RangeTo<uint>> for Vec<T> {
1307     type Output = [T];
1308     #[inline]
1309     fn index(&self, index: &ops::RangeTo<uint>) -> &[T] {
1310         self.as_slice().index(index)
1311     }
1312 }
1313 #[stable(feature = "rust1", since = "1.0.0")]
1314 impl<T> ops::Index<ops::RangeFrom<uint>> for Vec<T> {
1315     type Output = [T];
1316     #[inline]
1317     fn index(&self, index: &ops::RangeFrom<uint>) -> &[T] {
1318         self.as_slice().index(index)
1319     }
1320 }
1321 #[cfg(stage0)]
1322 #[stable(feature = "rust1", since = "1.0.0")]
1323 impl<T> ops::Index<ops::FullRange> for Vec<T> {
1324     type Output = [T];
1325     #[inline]
1326     fn index(&self, _index: &ops::FullRange) -> &[T] {
1327         self.as_slice()
1328     }
1329 }
1330 #[cfg(not(stage0))]
1331 #[stable(feature = "rust1", since = "1.0.0")]
1332 impl<T> ops::Index<ops::RangeFull> for Vec<T> {
1333     type Output = [T];
1334     #[inline]
1335     fn index(&self, _index: &ops::RangeFull) -> &[T] {
1336         self.as_slice()
1337     }
1338 }
1339
1340 #[stable(feature = "rust1", since = "1.0.0")]
1341 impl<T> ops::IndexMut<ops::Range<uint>> for Vec<T> {
1342     type Output = [T];
1343     #[inline]
1344     fn index_mut(&mut self, index: &ops::Range<uint>) -> &mut [T] {
1345         self.as_mut_slice().index_mut(index)
1346     }
1347 }
1348 #[stable(feature = "rust1", since = "1.0.0")]
1349 impl<T> ops::IndexMut<ops::RangeTo<uint>> for Vec<T> {
1350     type Output = [T];
1351     #[inline]
1352     fn index_mut(&mut self, index: &ops::RangeTo<uint>) -> &mut [T] {
1353         self.as_mut_slice().index_mut(index)
1354     }
1355 }
1356 #[stable(feature = "rust1", since = "1.0.0")]
1357 impl<T> ops::IndexMut<ops::RangeFrom<uint>> for Vec<T> {
1358     type Output = [T];
1359     #[inline]
1360     fn index_mut(&mut self, index: &ops::RangeFrom<uint>) -> &mut [T] {
1361         self.as_mut_slice().index_mut(index)
1362     }
1363 }
1364 #[cfg(stage0)]
1365 #[stable(feature = "rust1", since = "1.0.0")]
1366 impl<T> ops::IndexMut<ops::FullRange> for Vec<T> {
1367     type Output = [T];
1368     #[inline]
1369     fn index_mut(&mut self, _index: &ops::FullRange) -> &mut [T] {
1370         self.as_mut_slice()
1371     }
1372 }
1373 #[cfg(not(stage0))]
1374 #[stable(feature = "rust1", since = "1.0.0")]
1375 impl<T> ops::IndexMut<ops::RangeFull> for Vec<T> {
1376     type Output = [T];
1377     #[inline]
1378     fn index_mut(&mut self, _index: &ops::RangeFull) -> &mut [T] {
1379         self.as_mut_slice()
1380     }
1381 }
1382
1383 #[stable(feature = "rust1", since = "1.0.0")]
1384 impl<T> ops::Deref for Vec<T> {
1385     type Target = [T];
1386
1387     fn deref<'a>(&'a self) -> &'a [T] { self.as_slice() }
1388 }
1389
1390 #[stable(feature = "rust1", since = "1.0.0")]
1391 impl<T> ops::DerefMut for Vec<T> {
1392     fn deref_mut<'a>(&'a mut self) -> &'a mut [T] { self.as_mut_slice() }
1393 }
1394
1395 #[stable(feature = "rust1", since = "1.0.0")]
1396 impl<T> FromIterator<T> for Vec<T> {
1397     #[inline]
1398     fn from_iter<I:Iterator<Item=T>>(mut iterator: I) -> Vec<T> {
1399         let (lower, _) = iterator.size_hint();
1400         let mut vector = Vec::with_capacity(lower);
1401         for element in iterator {
1402             vector.push(element)
1403         }
1404         vector
1405     }
1406 }
1407
1408 impl<T> IntoIterator for Vec<T> {
1409     type Iter = IntoIter<T>;
1410
1411     fn into_iter(self) -> IntoIter<T> {
1412         self.into_iter()
1413     }
1414 }
1415
1416 impl<'a, T> IntoIterator for &'a Vec<T> {
1417     type Iter = slice::Iter<'a, T>;
1418
1419     fn into_iter(self) -> slice::Iter<'a, T> {
1420         self.iter()
1421     }
1422 }
1423
1424 impl<'a, T> IntoIterator for &'a mut Vec<T> {
1425     type Iter = slice::IterMut<'a, T>;
1426
1427     fn into_iter(mut self) -> slice::IterMut<'a, T> {
1428         self.iter_mut()
1429     }
1430 }
1431
1432 #[unstable(feature = "collections", reason = "waiting on Extend stability")]
1433 impl<T> Extend<T> for Vec<T> {
1434     #[inline]
1435     fn extend<I: Iterator<Item=T>>(&mut self, mut iterator: I) {
1436         let (lower, _) = iterator.size_hint();
1437         self.reserve(lower);
1438         for element in iterator {
1439             self.push(element)
1440         }
1441     }
1442 }
1443
1444 impl<A, B> PartialEq<Vec<B>> for Vec<A> where A: PartialEq<B> {
1445     #[inline]
1446     fn eq(&self, other: &Vec<B>) -> bool { PartialEq::eq(&**self, &**other) }
1447     #[inline]
1448     fn ne(&self, other: &Vec<B>) -> bool { PartialEq::ne(&**self, &**other) }
1449 }
1450
1451 macro_rules! impl_eq {
1452     ($lhs:ty, $rhs:ty) => {
1453         impl<'b, A, B> PartialEq<$rhs> for $lhs where A: PartialEq<B> {
1454             #[inline]
1455             fn eq(&self, other: &$rhs) -> bool { PartialEq::eq(&**self, &**other) }
1456             #[inline]
1457             fn ne(&self, other: &$rhs) -> bool { PartialEq::ne(&**self, &**other) }
1458         }
1459
1460         impl<'b, A, B> PartialEq<$lhs> for $rhs where B: PartialEq<A> {
1461             #[inline]
1462             fn eq(&self, other: &$lhs) -> bool { PartialEq::eq(&**self, &**other) }
1463             #[inline]
1464             fn ne(&self, other: &$lhs) -> bool { PartialEq::ne(&**self, &**other) }
1465         }
1466     }
1467 }
1468
1469 impl_eq! { Vec<A>, &'b [B] }
1470 impl_eq! { Vec<A>, &'b mut [B] }
1471
1472 impl<'a, A, B> PartialEq<Vec<B>> for CowVec<'a, A> where A: PartialEq<B> + Clone {
1473     #[inline]
1474     fn eq(&self, other: &Vec<B>) -> bool { PartialEq::eq(&**self, &**other) }
1475     #[inline]
1476     fn ne(&self, other: &Vec<B>) -> bool { PartialEq::ne(&**self, &**other) }
1477 }
1478
1479 impl<'a, A, B> PartialEq<CowVec<'a, A>> for Vec<B> where A: Clone, B: PartialEq<A> {
1480     #[inline]
1481     fn eq(&self, other: &CowVec<'a, A>) -> bool { PartialEq::eq(&**self, &**other) }
1482     #[inline]
1483     fn ne(&self, other: &CowVec<'a, A>) -> bool { PartialEq::ne(&**self, &**other) }
1484 }
1485
1486 macro_rules! impl_eq_for_cowvec {
1487     ($rhs:ty) => {
1488         impl<'a, 'b, A, B> PartialEq<$rhs> for CowVec<'a, A> where A: PartialEq<B> + Clone {
1489             #[inline]
1490             fn eq(&self, other: &$rhs) -> bool { PartialEq::eq(&**self, &**other) }
1491             #[inline]
1492             fn ne(&self, other: &$rhs) -> bool { PartialEq::ne(&**self, &**other) }
1493         }
1494
1495         impl<'a, 'b, A, B> PartialEq<CowVec<'a, A>> for $rhs where A: Clone, B: PartialEq<A> {
1496             #[inline]
1497             fn eq(&self, other: &CowVec<'a, A>) -> bool { PartialEq::eq(&**self, &**other) }
1498             #[inline]
1499             fn ne(&self, other: &CowVec<'a, A>) -> bool { PartialEq::ne(&**self, &**other) }
1500         }
1501     }
1502 }
1503
1504 impl_eq_for_cowvec! { &'b [B] }
1505 impl_eq_for_cowvec! { &'b mut [B] }
1506
1507 #[unstable(feature = "collections",
1508            reason = "waiting on PartialOrd stability")]
1509 impl<T: PartialOrd> PartialOrd for Vec<T> {
1510     #[inline]
1511     fn partial_cmp(&self, other: &Vec<T>) -> Option<Ordering> {
1512         self.as_slice().partial_cmp(other.as_slice())
1513     }
1514 }
1515
1516 #[unstable(feature = "collections", reason = "waiting on Eq stability")]
1517 impl<T: Eq> Eq for Vec<T> {}
1518
1519 #[unstable(feature = "collections", reason = "waiting on Ord stability")]
1520 impl<T: Ord> Ord for Vec<T> {
1521     #[inline]
1522     fn cmp(&self, other: &Vec<T>) -> Ordering {
1523         self.as_slice().cmp(other.as_slice())
1524     }
1525 }
1526
1527 impl<T> AsSlice<T> for Vec<T> {
1528     /// Returns a slice into `self`.
1529     ///
1530     /// # Examples
1531     ///
1532     /// ```
1533     /// fn foo(slice: &[int]) {}
1534     ///
1535     /// let vec = vec![1i, 2];
1536     /// foo(vec.as_slice());
1537     /// ```
1538     #[inline]
1539     #[stable(feature = "rust1", since = "1.0.0")]
1540     fn as_slice<'a>(&'a self) -> &'a [T] {
1541         unsafe {
1542             mem::transmute(RawSlice {
1543                 data: *self.ptr,
1544                 len: self.len
1545             })
1546         }
1547     }
1548 }
1549
1550 #[unstable(feature = "collections",
1551            reason = "recent addition, needs more experience")]
1552 impl<'a, T: Clone> Add<&'a [T]> for Vec<T> {
1553     type Output = Vec<T>;
1554
1555     #[inline]
1556     fn add(mut self, rhs: &[T]) -> Vec<T> {
1557         self.push_all(rhs);
1558         self
1559     }
1560 }
1561
1562 #[unsafe_destructor]
1563 #[stable(feature = "rust1", since = "1.0.0")]
1564 impl<T> Drop for Vec<T> {
1565     fn drop(&mut self) {
1566         // This is (and should always remain) a no-op if the fields are
1567         // zeroed (when moving out, because of #[unsafe_no_drop_flag]).
1568         if self.cap != 0 {
1569             unsafe {
1570                 // FIXME(#21245) use a for loop
1571                 let mut iter = self.iter();
1572                 while let Some(x) = iter.next() {
1573                     ptr::read(x);
1574                 }
1575                 dealloc(*self.ptr, self.cap)
1576             }
1577         }
1578     }
1579 }
1580
1581 #[stable(feature = "rust1", since = "1.0.0")]
1582 impl<T> Default for Vec<T> {
1583     #[stable(feature = "rust1", since = "1.0.0")]
1584     fn default() -> Vec<T> {
1585         Vec::new()
1586     }
1587 }
1588
1589 #[stable(feature = "rust1", since = "1.0.0")]
1590 impl<T: fmt::Debug> fmt::Debug for Vec<T> {
1591     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
1592         fmt::Debug::fmt(self.as_slice(), f)
1593     }
1594 }
1595
1596 impl<'a> fmt::Writer for Vec<u8> {
1597     fn write_str(&mut self, s: &str) -> fmt::Result {
1598         self.push_all(s.as_bytes());
1599         Ok(())
1600     }
1601 }
1602
1603 ////////////////////////////////////////////////////////////////////////////////
1604 // Clone-on-write
1605 ////////////////////////////////////////////////////////////////////////////////
1606
1607 #[unstable(feature = "collections",
1608            reason = "unclear how valuable this alias is")]
1609 /// A clone-on-write vector
1610 pub type CowVec<'a, T> = Cow<'a, Vec<T>, [T]>;
1611
1612 #[unstable(feature = "collections")]
1613 impl<'a, T> FromIterator<T> for CowVec<'a, T> where T: Clone {
1614     fn from_iter<I: Iterator<Item=T>>(it: I) -> CowVec<'a, T> {
1615         Cow::Owned(FromIterator::from_iter(it))
1616     }
1617 }
1618
1619 impl<'a, T: 'a> IntoCow<'a, Vec<T>, [T]> for Vec<T> where T: Clone {
1620     fn into_cow(self) -> CowVec<'a, T> {
1621         Cow::Owned(self)
1622     }
1623 }
1624
1625 impl<'a, T> IntoCow<'a, Vec<T>, [T]> for &'a [T] where T: Clone {
1626     fn into_cow(self) -> CowVec<'a, T> {
1627         Cow::Borrowed(self)
1628     }
1629 }
1630
1631 ////////////////////////////////////////////////////////////////////////////////
1632 // Iterators
1633 ////////////////////////////////////////////////////////////////////////////////
1634
1635 /// An iterator that moves out of a vector.
1636 #[stable(feature = "rust1", since = "1.0.0")]
1637 pub struct IntoIter<T> {
1638     allocation: *mut T, // the block of memory allocated for the vector
1639     cap: uint, // the capacity of the vector
1640     ptr: *const T,
1641     end: *const T
1642 }
1643
1644 unsafe impl<T: Send> Send for IntoIter<T> { }
1645 unsafe impl<T: Sync> Sync for IntoIter<T> { }
1646
1647 impl<T> IntoIter<T> {
1648     #[inline]
1649     /// Drops all items that have not yet been moved and returns the empty vector.
1650     #[unstable(feature = "collections")]
1651     pub fn into_inner(mut self) -> Vec<T> {
1652         unsafe {
1653             for _x in self.by_ref() { }
1654             let IntoIter { allocation, cap, ptr: _ptr, end: _end } = self;
1655             mem::forget(self);
1656             Vec { ptr: NonZero::new(allocation), cap: cap, len: 0 }
1657         }
1658     }
1659 }
1660
1661 #[stable(feature = "rust1", since = "1.0.0")]
1662 impl<T> Iterator for IntoIter<T> {
1663     type Item = T;
1664
1665     #[inline]
1666     fn next<'a>(&'a mut self) -> Option<T> {
1667         unsafe {
1668             if self.ptr == self.end {
1669                 None
1670             } else {
1671                 if mem::size_of::<T>() == 0 {
1672                     // purposefully don't use 'ptr.offset' because for
1673                     // vectors with 0-size elements this would return the
1674                     // same pointer.
1675                     self.ptr = mem::transmute(self.ptr as uint + 1);
1676
1677                     // Use a non-null pointer value
1678                     Some(ptr::read(mem::transmute(1u)))
1679                 } else {
1680                     let old = self.ptr;
1681                     self.ptr = self.ptr.offset(1);
1682
1683                     Some(ptr::read(old))
1684                 }
1685             }
1686         }
1687     }
1688
1689     #[inline]
1690     fn size_hint(&self) -> (uint, Option<uint>) {
1691         let diff = (self.end as uint) - (self.ptr as uint);
1692         let size = mem::size_of::<T>();
1693         let exact = diff / (if size == 0 {1} else {size});
1694         (exact, Some(exact))
1695     }
1696 }
1697
1698 #[stable(feature = "rust1", since = "1.0.0")]
1699 impl<T> DoubleEndedIterator for IntoIter<T> {
1700     #[inline]
1701     fn next_back<'a>(&'a mut self) -> Option<T> {
1702         unsafe {
1703             if self.end == self.ptr {
1704                 None
1705             } else {
1706                 if mem::size_of::<T>() == 0 {
1707                     // See above for why 'ptr.offset' isn't used
1708                     self.end = mem::transmute(self.end as uint - 1);
1709
1710                     // Use a non-null pointer value
1711                     Some(ptr::read(mem::transmute(1u)))
1712                 } else {
1713                     self.end = self.end.offset(-1);
1714
1715                     Some(ptr::read(mem::transmute(self.end)))
1716                 }
1717             }
1718         }
1719     }
1720 }
1721
1722 #[stable(feature = "rust1", since = "1.0.0")]
1723 impl<T> ExactSizeIterator for IntoIter<T> {}
1724
1725 #[unsafe_destructor]
1726 #[stable(feature = "rust1", since = "1.0.0")]
1727 impl<T> Drop for IntoIter<T> {
1728     fn drop(&mut self) {
1729         // destroy the remaining elements
1730         if self.cap != 0 {
1731             for _x in self.by_ref() {}
1732             unsafe {
1733                 dealloc(self.allocation, self.cap);
1734             }
1735         }
1736     }
1737 }
1738
1739 /// An iterator that drains a vector.
1740 #[unsafe_no_drop_flag]
1741 #[unstable(feature = "collections",
1742            reason = "recently added as part of collections reform 2")]
1743 pub struct Drain<'a, T> {
1744     ptr: *const T,
1745     end: *const T,
1746     marker: ContravariantLifetime<'a>,
1747 }
1748
1749 #[stable(feature = "rust1", since = "1.0.0")]
1750 impl<'a, T> Iterator for Drain<'a, T> {
1751     type Item = T;
1752
1753     #[inline]
1754     fn next(&mut self) -> Option<T> {
1755         unsafe {
1756             if self.ptr == self.end {
1757                 None
1758             } else {
1759                 if mem::size_of::<T>() == 0 {
1760                     // purposefully don't use 'ptr.offset' because for
1761                     // vectors with 0-size elements this would return the
1762                     // same pointer.
1763                     self.ptr = mem::transmute(self.ptr as uint + 1);
1764
1765                     // Use a non-null pointer value
1766                     Some(ptr::read(mem::transmute(1u)))
1767                 } else {
1768                     let old = self.ptr;
1769                     self.ptr = self.ptr.offset(1);
1770
1771                     Some(ptr::read(old))
1772                 }
1773             }
1774         }
1775     }
1776
1777     #[inline]
1778     fn size_hint(&self) -> (uint, Option<uint>) {
1779         let diff = (self.end as uint) - (self.ptr as uint);
1780         let size = mem::size_of::<T>();
1781         let exact = diff / (if size == 0 {1} else {size});
1782         (exact, Some(exact))
1783     }
1784 }
1785
1786 #[stable(feature = "rust1", since = "1.0.0")]
1787 impl<'a, T> DoubleEndedIterator for Drain<'a, T> {
1788     #[inline]
1789     fn next_back(&mut self) -> Option<T> {
1790         unsafe {
1791             if self.end == self.ptr {
1792                 None
1793             } else {
1794                 if mem::size_of::<T>() == 0 {
1795                     // See above for why 'ptr.offset' isn't used
1796                     self.end = mem::transmute(self.end as uint - 1);
1797
1798                     // Use a non-null pointer value
1799                     Some(ptr::read(mem::transmute(1u)))
1800                 } else {
1801                     self.end = self.end.offset(-1);
1802
1803                     Some(ptr::read(self.end))
1804                 }
1805             }
1806         }
1807     }
1808 }
1809
1810 #[stable(feature = "rust1", since = "1.0.0")]
1811 impl<'a, T> ExactSizeIterator for Drain<'a, T> {}
1812
1813 #[unsafe_destructor]
1814 #[stable(feature = "rust1", since = "1.0.0")]
1815 impl<'a, T> Drop for Drain<'a, T> {
1816     fn drop(&mut self) {
1817         // self.ptr == self.end == null if drop has already been called,
1818         // so we can use #[unsafe_no_drop_flag].
1819
1820         // destroy the remaining elements
1821         for _x in self.by_ref() {}
1822     }
1823 }
1824
1825 ////////////////////////////////////////////////////////////////////////////////
1826 // Conversion from &[T] to &Vec<T>
1827 ////////////////////////////////////////////////////////////////////////////////
1828
1829 /// Wrapper type providing a `&Vec<T>` reference via `Deref`.
1830 #[unstable(feature = "collections")]
1831 pub struct DerefVec<'a, T> {
1832     x: Vec<T>,
1833     l: ContravariantLifetime<'a>
1834 }
1835
1836 #[unstable(feature = "collections")]
1837 impl<'a, T> Deref for DerefVec<'a, T> {
1838     type Target = Vec<T>;
1839
1840     fn deref<'b>(&'b self) -> &'b Vec<T> {
1841         &self.x
1842     }
1843 }
1844
1845 // Prevent the inner `Vec<T>` from attempting to deallocate memory.
1846 #[unsafe_destructor]
1847 #[stable(feature = "rust1", since = "1.0.0")]
1848 impl<'a, T> Drop for DerefVec<'a, T> {
1849     fn drop(&mut self) {
1850         self.x.len = 0;
1851         self.x.cap = 0;
1852     }
1853 }
1854
1855 /// Convert a slice to a wrapper type providing a `&Vec<T>` reference.
1856 #[unstable(feature = "collections")]
1857 pub fn as_vec<'a, T>(x: &'a [T]) -> DerefVec<'a, T> {
1858     unsafe {
1859         DerefVec {
1860             x: Vec::from_raw_parts(x.as_ptr() as *mut T, x.len(), x.len()),
1861             l: ContravariantLifetime::<'a>
1862         }
1863     }
1864 }
1865
1866 ////////////////////////////////////////////////////////////////////////////////
1867 // Partial vec, used for map_in_place
1868 ////////////////////////////////////////////////////////////////////////////////
1869
1870 /// An owned, partially type-converted vector of elements with non-zero size.
1871 ///
1872 /// `T` and `U` must have the same, non-zero size. They must also have the same
1873 /// alignment.
1874 ///
1875 /// When the destructor of this struct runs, all `U`s from `start_u` (incl.) to
1876 /// `end_u` (excl.) and all `T`s from `start_t` (incl.) to `end_t` (excl.) are
1877 /// destructed. Additionally the underlying storage of `vec` will be freed.
1878 struct PartialVecNonZeroSized<T,U> {
1879     vec: Vec<T>,
1880
1881     start_u: *mut U,
1882     end_u: *mut U,
1883     start_t: *mut T,
1884     end_t: *mut T,
1885 }
1886
1887 /// An owned, partially type-converted vector of zero-sized elements.
1888 ///
1889 /// When the destructor of this struct runs, all `num_t` `T`s and `num_u` `U`s
1890 /// are destructed.
1891 struct PartialVecZeroSized<T,U> {
1892     num_t: uint,
1893     num_u: uint,
1894     marker_t: InvariantType<T>,
1895     marker_u: InvariantType<U>,
1896 }
1897
1898 #[unsafe_destructor]
1899 impl<T,U> Drop for PartialVecNonZeroSized<T,U> {
1900     fn drop(&mut self) {
1901         unsafe {
1902             // `vec` hasn't been modified until now. As it has a length
1903             // currently, this would run destructors of `T`s which might not be
1904             // there. So at first, set `vec`s length to `0`. This must be done
1905             // at first to remain memory-safe as the destructors of `U` or `T`
1906             // might cause unwinding where `vec`s destructor would be executed.
1907             self.vec.set_len(0);
1908
1909             // We have instances of `U`s and `T`s in `vec`. Destruct them.
1910             while self.start_u != self.end_u {
1911                 let _ = ptr::read(self.start_u); // Run a `U` destructor.
1912                 self.start_u = self.start_u.offset(1);
1913             }
1914             while self.start_t != self.end_t {
1915                 let _ = ptr::read(self.start_t); // Run a `T` destructor.
1916                 self.start_t = self.start_t.offset(1);
1917             }
1918             // After this destructor ran, the destructor of `vec` will run,
1919             // deallocating the underlying memory.
1920         }
1921     }
1922 }
1923
1924 #[unsafe_destructor]
1925 impl<T,U> Drop for PartialVecZeroSized<T,U> {
1926     fn drop(&mut self) {
1927         unsafe {
1928             // Destruct the instances of `T` and `U` this struct owns.
1929             while self.num_t != 0 {
1930                 let _: T = mem::uninitialized(); // Run a `T` destructor.
1931                 self.num_t -= 1;
1932             }
1933             while self.num_u != 0 {
1934                 let _: U = mem::uninitialized(); // Run a `U` destructor.
1935                 self.num_u -= 1;
1936             }
1937         }
1938     }
1939 }
1940
1941 #[cfg(test)]
1942 mod tests {
1943     use prelude::*;
1944     use core::mem::size_of;
1945     use core::iter::repeat;
1946     #[cfg(stage0)]
1947     use core::ops::FullRange;
1948     use test::Bencher;
1949     use super::as_vec;
1950
1951     struct DropCounter<'a> {
1952         count: &'a mut int
1953     }
1954
1955     #[unsafe_destructor]
1956     impl<'a> Drop for DropCounter<'a> {
1957         fn drop(&mut self) {
1958             *self.count += 1;
1959         }
1960     }
1961
1962     #[test]
1963     fn test_as_vec() {
1964         let xs = [1u8, 2u8, 3u8];
1965         assert_eq!(as_vec(&xs).as_slice(), xs);
1966     }
1967
1968     #[test]
1969     fn test_as_vec_dtor() {
1970         let (mut count_x, mut count_y) = (0, 0);
1971         {
1972             let xs = &[DropCounter { count: &mut count_x }, DropCounter { count: &mut count_y }];
1973             assert_eq!(as_vec(xs).len(), 2);
1974         }
1975         assert_eq!(count_x, 1);
1976         assert_eq!(count_y, 1);
1977     }
1978
1979     #[test]
1980     fn test_small_vec_struct() {
1981         assert!(size_of::<Vec<u8>>() == size_of::<uint>() * 3);
1982     }
1983
1984     #[test]
1985     fn test_double_drop() {
1986         struct TwoVec<T> {
1987             x: Vec<T>,
1988             y: Vec<T>
1989         }
1990
1991         let (mut count_x, mut count_y) = (0, 0);
1992         {
1993             let mut tv = TwoVec {
1994                 x: Vec::new(),
1995                 y: Vec::new()
1996             };
1997             tv.x.push(DropCounter {count: &mut count_x});
1998             tv.y.push(DropCounter {count: &mut count_y});
1999
2000             // If Vec had a drop flag, here is where it would be zeroed.
2001             // Instead, it should rely on its internal state to prevent
2002             // doing anything significant when dropped multiple times.
2003             drop(tv.x);
2004
2005             // Here tv goes out of scope, tv.y should be dropped, but not tv.x.
2006         }
2007
2008         assert_eq!(count_x, 1);
2009         assert_eq!(count_y, 1);
2010     }
2011
2012     #[test]
2013     fn test_reserve() {
2014         let mut v = Vec::new();
2015         assert_eq!(v.capacity(), 0);
2016
2017         v.reserve(2);
2018         assert!(v.capacity() >= 2);
2019
2020         for i in 0i..16 {
2021             v.push(i);
2022         }
2023
2024         assert!(v.capacity() >= 16);
2025         v.reserve(16);
2026         assert!(v.capacity() >= 32);
2027
2028         v.push(16);
2029
2030         v.reserve(16);
2031         assert!(v.capacity() >= 33)
2032     }
2033
2034     #[test]
2035     fn test_extend() {
2036         let mut v = Vec::new();
2037         let mut w = Vec::new();
2038
2039         v.extend(0i..3);
2040         for i in 0i..3 { w.push(i) }
2041
2042         assert_eq!(v, w);
2043
2044         v.extend(3i..10);
2045         for i in 3i..10 { w.push(i) }
2046
2047         assert_eq!(v, w);
2048     }
2049
2050     #[test]
2051     fn test_slice_from_mut() {
2052         let mut values = vec![1u8,2,3,4,5];
2053         {
2054             let slice = &mut values[2 ..];
2055             assert!(slice == [3, 4, 5]);
2056             for p in slice.iter_mut() {
2057                 *p += 2;
2058             }
2059         }
2060
2061         assert!(values == [1, 2, 5, 6, 7]);
2062     }
2063
2064     #[test]
2065     fn test_slice_to_mut() {
2066         let mut values = vec![1u8,2,3,4,5];
2067         {
2068             let slice = &mut values[.. 2];
2069             assert!(slice == [1, 2]);
2070             for p in slice.iter_mut() {
2071                 *p += 1;
2072             }
2073         }
2074
2075         assert!(values == [2, 3, 3, 4, 5]);
2076     }
2077
2078     #[test]
2079     fn test_split_at_mut() {
2080         let mut values = vec![1u8,2,3,4,5];
2081         {
2082             let (left, right) = values.split_at_mut(2);
2083             {
2084                 let left: &[_] = left;
2085                 assert!(&left[..left.len()] == &[1, 2][]);
2086             }
2087             for p in left.iter_mut() {
2088                 *p += 1;
2089             }
2090
2091             {
2092                 let right: &[_] = right;
2093                 assert!(&right[..right.len()] == &[3, 4, 5][]);
2094             }
2095             for p in right.iter_mut() {
2096                 *p += 2;
2097             }
2098         }
2099
2100         assert!(values == vec![2u8, 3, 5, 6, 7]);
2101     }
2102
2103     #[test]
2104     fn test_clone() {
2105         let v: Vec<int> = vec!();
2106         let w = vec!(1i, 2, 3);
2107
2108         assert_eq!(v, v.clone());
2109
2110         let z = w.clone();
2111         assert_eq!(w, z);
2112         // they should be disjoint in memory.
2113         assert!(w.as_ptr() != z.as_ptr())
2114     }
2115
2116     #[test]
2117     fn test_clone_from() {
2118         let mut v = vec!();
2119         let three = vec!(box 1i, box 2, box 3);
2120         let two = vec!(box 4i, box 5);
2121         // zero, long
2122         v.clone_from(&three);
2123         assert_eq!(v, three);
2124
2125         // equal
2126         v.clone_from(&three);
2127         assert_eq!(v, three);
2128
2129         // long, short
2130         v.clone_from(&two);
2131         assert_eq!(v, two);
2132
2133         // short, long
2134         v.clone_from(&three);
2135         assert_eq!(v, three)
2136     }
2137
2138     #[test]
2139     fn test_retain() {
2140         let mut vec = vec![1u, 2, 3, 4];
2141         vec.retain(|&x| x % 2 == 0);
2142         assert!(vec == vec![2u, 4]);
2143     }
2144
2145     #[test]
2146     fn zero_sized_values() {
2147         let mut v = Vec::new();
2148         assert_eq!(v.len(), 0);
2149         v.push(());
2150         assert_eq!(v.len(), 1);
2151         v.push(());
2152         assert_eq!(v.len(), 2);
2153         assert_eq!(v.pop(), Some(()));
2154         assert_eq!(v.pop(), Some(()));
2155         assert_eq!(v.pop(), None);
2156
2157         assert_eq!(v.iter().count(), 0);
2158         v.push(());
2159         assert_eq!(v.iter().count(), 1);
2160         v.push(());
2161         assert_eq!(v.iter().count(), 2);
2162
2163         for &() in v.iter() {}
2164
2165         assert_eq!(v.iter_mut().count(), 2);
2166         v.push(());
2167         assert_eq!(v.iter_mut().count(), 3);
2168         v.push(());
2169         assert_eq!(v.iter_mut().count(), 4);
2170
2171         for &mut () in v.iter_mut() {}
2172         unsafe { v.set_len(0); }
2173         assert_eq!(v.iter_mut().count(), 0);
2174     }
2175
2176     #[test]
2177     fn test_partition() {
2178         assert_eq!(vec![].into_iter().partition(|x: &int| *x < 3), (vec![], vec![]));
2179         assert_eq!(vec![1i, 2, 3].into_iter().partition(|x: &int| *x < 4), (vec![1, 2, 3], vec![]));
2180         assert_eq!(vec![1i, 2, 3].into_iter().partition(|x: &int| *x < 2), (vec![1], vec![2, 3]));
2181         assert_eq!(vec![1i, 2, 3].into_iter().partition(|x: &int| *x < 0), (vec![], vec![1, 2, 3]));
2182     }
2183
2184     #[test]
2185     fn test_zip_unzip() {
2186         let z1 = vec![(1i, 4i), (2, 5), (3, 6)];
2187
2188         let (left, right): (Vec<_>, Vec<_>) = z1.iter().map(|&x| x).unzip();
2189
2190         assert_eq!((1, 4), (left[0], right[0]));
2191         assert_eq!((2, 5), (left[1], right[1]));
2192         assert_eq!((3, 6), (left[2], right[2]));
2193     }
2194
2195     #[test]
2196     fn test_unsafe_ptrs() {
2197         unsafe {
2198             // Test on-stack copy-from-buf.
2199             let a = [1i, 2, 3];
2200             let ptr = a.as_ptr();
2201             let b = Vec::from_raw_buf(ptr, 3u);
2202             assert_eq!(b, vec![1, 2, 3]);
2203
2204             // Test on-heap copy-from-buf.
2205             let c = vec![1i, 2, 3, 4, 5];
2206             let ptr = c.as_ptr();
2207             let d = Vec::from_raw_buf(ptr, 5u);
2208             assert_eq!(d, vec![1, 2, 3, 4, 5]);
2209         }
2210     }
2211
2212     #[test]
2213     fn test_vec_truncate_drop() {
2214         static mut drops: uint = 0;
2215         struct Elem(int);
2216         impl Drop for Elem {
2217             fn drop(&mut self) {
2218                 unsafe { drops += 1; }
2219             }
2220         }
2221
2222         let mut v = vec![Elem(1), Elem(2), Elem(3), Elem(4), Elem(5)];
2223         assert_eq!(unsafe { drops }, 0);
2224         v.truncate(3);
2225         assert_eq!(unsafe { drops }, 2);
2226         v.truncate(0);
2227         assert_eq!(unsafe { drops }, 5);
2228     }
2229
2230     #[test]
2231     #[should_fail]
2232     fn test_vec_truncate_fail() {
2233         struct BadElem(int);
2234         impl Drop for BadElem {
2235             fn drop(&mut self) {
2236                 let BadElem(ref mut x) = *self;
2237                 if *x == 0xbadbeef {
2238                     panic!("BadElem panic: 0xbadbeef")
2239                 }
2240             }
2241         }
2242
2243         let mut v = vec![BadElem(1), BadElem(2), BadElem(0xbadbeef), BadElem(4)];
2244         v.truncate(0);
2245     }
2246
2247     #[test]
2248     fn test_index() {
2249         let vec = vec!(1i, 2, 3);
2250         assert!(vec[1] == 2);
2251     }
2252
2253     #[test]
2254     #[should_fail]
2255     fn test_index_out_of_bounds() {
2256         let vec = vec!(1i, 2, 3);
2257         let _ = vec[3];
2258     }
2259
2260     #[test]
2261     #[should_fail]
2262     fn test_slice_out_of_bounds_1() {
2263         let x: Vec<int> = vec![1, 2, 3, 4, 5];
2264         &x[-1..];
2265     }
2266
2267     #[test]
2268     #[should_fail]
2269     fn test_slice_out_of_bounds_2() {
2270         let x: Vec<int> = vec![1, 2, 3, 4, 5];
2271         &x[..6];
2272     }
2273
2274     #[test]
2275     #[should_fail]
2276     fn test_slice_out_of_bounds_3() {
2277         let x: Vec<int> = vec![1, 2, 3, 4, 5];
2278         &x[-1..4];
2279     }
2280
2281     #[test]
2282     #[should_fail]
2283     fn test_slice_out_of_bounds_4() {
2284         let x: Vec<int> = vec![1, 2, 3, 4, 5];
2285         &x[1..6];
2286     }
2287
2288     #[test]
2289     #[should_fail]
2290     fn test_slice_out_of_bounds_5() {
2291         let x: Vec<int> = vec![1, 2, 3, 4, 5];
2292         &x[3..2];
2293     }
2294
2295     #[test]
2296     #[should_fail]
2297     fn test_swap_remove_empty() {
2298         let mut vec: Vec<uint> = vec!();
2299         vec.swap_remove(0);
2300     }
2301
2302     #[test]
2303     fn test_move_iter_unwrap() {
2304         let mut vec: Vec<uint> = Vec::with_capacity(7);
2305         vec.push(1);
2306         vec.push(2);
2307         let ptr = vec.as_ptr();
2308         vec = vec.into_iter().into_inner();
2309         assert_eq!(vec.as_ptr(), ptr);
2310         assert_eq!(vec.capacity(), 7);
2311         assert_eq!(vec.len(), 0);
2312     }
2313
2314     #[test]
2315     #[should_fail]
2316     fn test_map_in_place_incompatible_types_fail() {
2317         let v = vec![0u, 1, 2];
2318         v.map_in_place(|_| ());
2319     }
2320
2321     #[test]
2322     fn test_map_in_place() {
2323         let v = vec![0u, 1, 2];
2324         assert_eq!(v.map_in_place(|i: uint| i as int - 1), [-1i, 0, 1]);
2325     }
2326
2327     #[test]
2328     fn test_map_in_place_zero_sized() {
2329         let v = vec![(), ()];
2330         #[derive(PartialEq, Debug)]
2331         struct ZeroSized;
2332         assert_eq!(v.map_in_place(|_| ZeroSized), [ZeroSized, ZeroSized]);
2333     }
2334
2335     #[test]
2336     fn test_map_in_place_zero_drop_count() {
2337         use std::sync::atomic::{AtomicUsize, Ordering, ATOMIC_USIZE_INIT};
2338
2339         #[derive(Clone, PartialEq, Debug)]
2340         struct Nothing;
2341         impl Drop for Nothing { fn drop(&mut self) { } }
2342
2343         #[derive(Clone, PartialEq, Debug)]
2344         struct ZeroSized;
2345         impl Drop for ZeroSized {
2346             fn drop(&mut self) {
2347                 DROP_COUNTER.fetch_add(1, Ordering::Relaxed);
2348             }
2349         }
2350         const NUM_ELEMENTS: uint = 2;
2351         static DROP_COUNTER: AtomicUsize = ATOMIC_USIZE_INIT;
2352
2353         let v = repeat(Nothing).take(NUM_ELEMENTS).collect::<Vec<_>>();
2354
2355         DROP_COUNTER.store(0, Ordering::Relaxed);
2356
2357         let v = v.map_in_place(|_| ZeroSized);
2358         assert_eq!(DROP_COUNTER.load(Ordering::Relaxed), 0);
2359         drop(v);
2360         assert_eq!(DROP_COUNTER.load(Ordering::Relaxed), NUM_ELEMENTS);
2361     }
2362
2363     #[test]
2364     fn test_move_items() {
2365         let vec = vec![1, 2, 3];
2366         let mut vec2 : Vec<i32> = vec![];
2367         for i in vec.into_iter() {
2368             vec2.push(i);
2369         }
2370         assert!(vec2 == vec![1, 2, 3]);
2371     }
2372
2373     #[test]
2374     fn test_move_items_reverse() {
2375         let vec = vec![1, 2, 3];
2376         let mut vec2 : Vec<i32> = vec![];
2377         for i in vec.into_iter().rev() {
2378             vec2.push(i);
2379         }
2380         assert!(vec2 == vec![3, 2, 1]);
2381     }
2382
2383     #[test]
2384     fn test_move_items_zero_sized() {
2385         let vec = vec![(), (), ()];
2386         let mut vec2 : Vec<()> = vec![];
2387         for i in vec.into_iter() {
2388             vec2.push(i);
2389         }
2390         assert!(vec2 == vec![(), (), ()]);
2391     }
2392
2393     #[test]
2394     fn test_drain_items() {
2395         let mut vec = vec![1, 2, 3];
2396         let mut vec2: Vec<i32> = vec![];
2397         for i in vec.drain() {
2398             vec2.push(i);
2399         }
2400         assert_eq!(vec, []);
2401         assert_eq!(vec2, [ 1, 2, 3 ]);
2402     }
2403
2404     #[test]
2405     fn test_drain_items_reverse() {
2406         let mut vec = vec![1, 2, 3];
2407         let mut vec2: Vec<i32> = vec![];
2408         for i in vec.drain().rev() {
2409             vec2.push(i);
2410         }
2411         assert_eq!(vec, []);
2412         assert_eq!(vec2, [ 3, 2, 1 ]);
2413     }
2414
2415     #[test]
2416     fn test_drain_items_zero_sized() {
2417         let mut vec = vec![(), (), ()];
2418         let mut vec2: Vec<()> = vec![];
2419         for i in vec.drain() {
2420             vec2.push(i);
2421         }
2422         assert_eq!(vec, []);
2423         assert_eq!(vec2, [(), (), ()]);
2424     }
2425
2426     #[test]
2427     fn test_into_boxed_slice() {
2428         let xs = vec![1u, 2, 3];
2429         let ys = xs.into_boxed_slice();
2430         assert_eq!(ys.as_slice(), [1u, 2, 3]);
2431     }
2432
2433     #[test]
2434     fn test_append() {
2435         let mut vec = vec![1, 2, 3];
2436         let mut vec2 = vec![4, 5, 6];
2437         vec.append(&mut vec2);
2438         assert_eq!(vec, vec![1, 2, 3, 4, 5, 6]);
2439         assert_eq!(vec2, vec![]);
2440     }
2441
2442     #[test]
2443     fn test_split_off() {
2444         let mut vec = vec![1, 2, 3, 4, 5, 6];
2445         let vec2 = vec.split_off(4);
2446         assert_eq!(vec, vec![1, 2, 3, 4]);
2447         assert_eq!(vec2, vec![5, 6]);
2448     }
2449
2450     #[bench]
2451     fn bench_new(b: &mut Bencher) {
2452         b.iter(|| {
2453             let v: Vec<uint> = Vec::new();
2454             assert_eq!(v.len(), 0);
2455             assert_eq!(v.capacity(), 0);
2456         })
2457     }
2458
2459     fn do_bench_with_capacity(b: &mut Bencher, src_len: uint) {
2460         b.bytes = src_len as u64;
2461
2462         b.iter(|| {
2463             let v: Vec<uint> = Vec::with_capacity(src_len);
2464             assert_eq!(v.len(), 0);
2465             assert_eq!(v.capacity(), src_len);
2466         })
2467     }
2468
2469     #[bench]
2470     fn bench_with_capacity_0000(b: &mut Bencher) {
2471         do_bench_with_capacity(b, 0)
2472     }
2473
2474     #[bench]
2475     fn bench_with_capacity_0010(b: &mut Bencher) {
2476         do_bench_with_capacity(b, 10)
2477     }
2478
2479     #[bench]
2480     fn bench_with_capacity_0100(b: &mut Bencher) {
2481         do_bench_with_capacity(b, 100)
2482     }
2483
2484     #[bench]
2485     fn bench_with_capacity_1000(b: &mut Bencher) {
2486         do_bench_with_capacity(b, 1000)
2487     }
2488
2489     fn do_bench_from_fn(b: &mut Bencher, src_len: uint) {
2490         b.bytes = src_len as u64;
2491
2492         b.iter(|| {
2493             let dst = (0..src_len).collect::<Vec<_>>();
2494             assert_eq!(dst.len(), src_len);
2495             assert!(dst.iter().enumerate().all(|(i, x)| i == *x));
2496         })
2497     }
2498
2499     #[bench]
2500     fn bench_from_fn_0000(b: &mut Bencher) {
2501         do_bench_from_fn(b, 0)
2502     }
2503
2504     #[bench]
2505     fn bench_from_fn_0010(b: &mut Bencher) {
2506         do_bench_from_fn(b, 10)
2507     }
2508
2509     #[bench]
2510     fn bench_from_fn_0100(b: &mut Bencher) {
2511         do_bench_from_fn(b, 100)
2512     }
2513
2514     #[bench]
2515     fn bench_from_fn_1000(b: &mut Bencher) {
2516         do_bench_from_fn(b, 1000)
2517     }
2518
2519     fn do_bench_from_elem(b: &mut Bencher, src_len: uint) {
2520         b.bytes = src_len as u64;
2521
2522         b.iter(|| {
2523             let dst: Vec<uint> = repeat(5).take(src_len).collect();
2524             assert_eq!(dst.len(), src_len);
2525             assert!(dst.iter().all(|x| *x == 5));
2526         })
2527     }
2528
2529     #[bench]
2530     fn bench_from_elem_0000(b: &mut Bencher) {
2531         do_bench_from_elem(b, 0)
2532     }
2533
2534     #[bench]
2535     fn bench_from_elem_0010(b: &mut Bencher) {
2536         do_bench_from_elem(b, 10)
2537     }
2538
2539     #[bench]
2540     fn bench_from_elem_0100(b: &mut Bencher) {
2541         do_bench_from_elem(b, 100)
2542     }
2543
2544     #[bench]
2545     fn bench_from_elem_1000(b: &mut Bencher) {
2546         do_bench_from_elem(b, 1000)
2547     }
2548
2549     fn do_bench_from_slice(b: &mut Bencher, src_len: uint) {
2550         let src: Vec<uint> = FromIterator::from_iter(0..src_len);
2551
2552         b.bytes = src_len as u64;
2553
2554         b.iter(|| {
2555             let dst = src.clone()[].to_vec();
2556             assert_eq!(dst.len(), src_len);
2557             assert!(dst.iter().enumerate().all(|(i, x)| i == *x));
2558         });
2559     }
2560
2561     #[bench]
2562     fn bench_from_slice_0000(b: &mut Bencher) {
2563         do_bench_from_slice(b, 0)
2564     }
2565
2566     #[bench]
2567     fn bench_from_slice_0010(b: &mut Bencher) {
2568         do_bench_from_slice(b, 10)
2569     }
2570
2571     #[bench]
2572     fn bench_from_slice_0100(b: &mut Bencher) {
2573         do_bench_from_slice(b, 100)
2574     }
2575
2576     #[bench]
2577     fn bench_from_slice_1000(b: &mut Bencher) {
2578         do_bench_from_slice(b, 1000)
2579     }
2580
2581     fn do_bench_from_iter(b: &mut Bencher, src_len: uint) {
2582         let src: Vec<uint> = FromIterator::from_iter(0..src_len);
2583
2584         b.bytes = src_len as u64;
2585
2586         b.iter(|| {
2587             let dst: Vec<uint> = FromIterator::from_iter(src.clone().into_iter());
2588             assert_eq!(dst.len(), src_len);
2589             assert!(dst.iter().enumerate().all(|(i, x)| i == *x));
2590         });
2591     }
2592
2593     #[bench]
2594     fn bench_from_iter_0000(b: &mut Bencher) {
2595         do_bench_from_iter(b, 0)
2596     }
2597
2598     #[bench]
2599     fn bench_from_iter_0010(b: &mut Bencher) {
2600         do_bench_from_iter(b, 10)
2601     }
2602
2603     #[bench]
2604     fn bench_from_iter_0100(b: &mut Bencher) {
2605         do_bench_from_iter(b, 100)
2606     }
2607
2608     #[bench]
2609     fn bench_from_iter_1000(b: &mut Bencher) {
2610         do_bench_from_iter(b, 1000)
2611     }
2612
2613     fn do_bench_extend(b: &mut Bencher, dst_len: uint, src_len: uint) {
2614         let dst: Vec<uint> = FromIterator::from_iter(0..dst_len);
2615         let src: Vec<uint> = FromIterator::from_iter(dst_len..dst_len + src_len);
2616
2617         b.bytes = src_len as u64;
2618
2619         b.iter(|| {
2620             let mut dst = dst.clone();
2621             dst.extend(src.clone().into_iter());
2622             assert_eq!(dst.len(), dst_len + src_len);
2623             assert!(dst.iter().enumerate().all(|(i, x)| i == *x));
2624         });
2625     }
2626
2627     #[bench]
2628     fn bench_extend_0000_0000(b: &mut Bencher) {
2629         do_bench_extend(b, 0, 0)
2630     }
2631
2632     #[bench]
2633     fn bench_extend_0000_0010(b: &mut Bencher) {
2634         do_bench_extend(b, 0, 10)
2635     }
2636
2637     #[bench]
2638     fn bench_extend_0000_0100(b: &mut Bencher) {
2639         do_bench_extend(b, 0, 100)
2640     }
2641
2642     #[bench]
2643     fn bench_extend_0000_1000(b: &mut Bencher) {
2644         do_bench_extend(b, 0, 1000)
2645     }
2646
2647     #[bench]
2648     fn bench_extend_0010_0010(b: &mut Bencher) {
2649         do_bench_extend(b, 10, 10)
2650     }
2651
2652     #[bench]
2653     fn bench_extend_0100_0100(b: &mut Bencher) {
2654         do_bench_extend(b, 100, 100)
2655     }
2656
2657     #[bench]
2658     fn bench_extend_1000_1000(b: &mut Bencher) {
2659         do_bench_extend(b, 1000, 1000)
2660     }
2661
2662     fn do_bench_push_all(b: &mut Bencher, dst_len: uint, src_len: uint) {
2663         let dst: Vec<uint> = FromIterator::from_iter(0..dst_len);
2664         let src: Vec<uint> = FromIterator::from_iter(dst_len..dst_len + src_len);
2665
2666         b.bytes = src_len as u64;
2667
2668         b.iter(|| {
2669             let mut dst = dst.clone();
2670             dst.push_all(src.as_slice());
2671             assert_eq!(dst.len(), dst_len + src_len);
2672             assert!(dst.iter().enumerate().all(|(i, x)| i == *x));
2673         });
2674     }
2675
2676     #[bench]
2677     fn bench_push_all_0000_0000(b: &mut Bencher) {
2678         do_bench_push_all(b, 0, 0)
2679     }
2680
2681     #[bench]
2682     fn bench_push_all_0000_0010(b: &mut Bencher) {
2683         do_bench_push_all(b, 0, 10)
2684     }
2685
2686     #[bench]
2687     fn bench_push_all_0000_0100(b: &mut Bencher) {
2688         do_bench_push_all(b, 0, 100)
2689     }
2690
2691     #[bench]
2692     fn bench_push_all_0000_1000(b: &mut Bencher) {
2693         do_bench_push_all(b, 0, 1000)
2694     }
2695
2696     #[bench]
2697     fn bench_push_all_0010_0010(b: &mut Bencher) {
2698         do_bench_push_all(b, 10, 10)
2699     }
2700
2701     #[bench]
2702     fn bench_push_all_0100_0100(b: &mut Bencher) {
2703         do_bench_push_all(b, 100, 100)
2704     }
2705
2706     #[bench]
2707     fn bench_push_all_1000_1000(b: &mut Bencher) {
2708         do_bench_push_all(b, 1000, 1000)
2709     }
2710
2711     fn do_bench_push_all_move(b: &mut Bencher, dst_len: uint, src_len: uint) {
2712         let dst: Vec<uint> = FromIterator::from_iter(0u..dst_len);
2713         let src: Vec<uint> = FromIterator::from_iter(dst_len..dst_len + src_len);
2714
2715         b.bytes = src_len as u64;
2716
2717         b.iter(|| {
2718             let mut dst = dst.clone();
2719             dst.extend(src.clone().into_iter());
2720             assert_eq!(dst.len(), dst_len + src_len);
2721             assert!(dst.iter().enumerate().all(|(i, x)| i == *x));
2722         });
2723     }
2724
2725     #[bench]
2726     fn bench_push_all_move_0000_0000(b: &mut Bencher) {
2727         do_bench_push_all_move(b, 0, 0)
2728     }
2729
2730     #[bench]
2731     fn bench_push_all_move_0000_0010(b: &mut Bencher) {
2732         do_bench_push_all_move(b, 0, 10)
2733     }
2734
2735     #[bench]
2736     fn bench_push_all_move_0000_0100(b: &mut Bencher) {
2737         do_bench_push_all_move(b, 0, 100)
2738     }
2739
2740     #[bench]
2741     fn bench_push_all_move_0000_1000(b: &mut Bencher) {
2742         do_bench_push_all_move(b, 0, 1000)
2743     }
2744
2745     #[bench]
2746     fn bench_push_all_move_0010_0010(b: &mut Bencher) {
2747         do_bench_push_all_move(b, 10, 10)
2748     }
2749
2750     #[bench]
2751     fn bench_push_all_move_0100_0100(b: &mut Bencher) {
2752         do_bench_push_all_move(b, 100, 100)
2753     }
2754
2755     #[bench]
2756     fn bench_push_all_move_1000_1000(b: &mut Bencher) {
2757         do_bench_push_all_move(b, 1000, 1000)
2758     }
2759
2760     fn do_bench_clone(b: &mut Bencher, src_len: uint) {
2761         let src: Vec<uint> = FromIterator::from_iter(0..src_len);
2762
2763         b.bytes = src_len as u64;
2764
2765         b.iter(|| {
2766             let dst = src.clone();
2767             assert_eq!(dst.len(), src_len);
2768             assert!(dst.iter().enumerate().all(|(i, x)| i == *x));
2769         });
2770     }
2771
2772     #[bench]
2773     fn bench_clone_0000(b: &mut Bencher) {
2774         do_bench_clone(b, 0)
2775     }
2776
2777     #[bench]
2778     fn bench_clone_0010(b: &mut Bencher) {
2779         do_bench_clone(b, 10)
2780     }
2781
2782     #[bench]
2783     fn bench_clone_0100(b: &mut Bencher) {
2784         do_bench_clone(b, 100)
2785     }
2786
2787     #[bench]
2788     fn bench_clone_1000(b: &mut Bencher) {
2789         do_bench_clone(b, 1000)
2790     }
2791
2792     fn do_bench_clone_from(b: &mut Bencher, times: uint, dst_len: uint, src_len: uint) {
2793         let dst: Vec<uint> = FromIterator::from_iter(0..src_len);
2794         let src: Vec<uint> = FromIterator::from_iter(dst_len..dst_len + src_len);
2795
2796         b.bytes = (times * src_len) as u64;
2797
2798         b.iter(|| {
2799             let mut dst = dst.clone();
2800
2801             for _ in 0..times {
2802                 dst.clone_from(&src);
2803
2804                 assert_eq!(dst.len(), src_len);
2805                 assert!(dst.iter().enumerate().all(|(i, x)| dst_len + i == *x));
2806             }
2807         });
2808     }
2809
2810     #[bench]
2811     fn bench_clone_from_01_0000_0000(b: &mut Bencher) {
2812         do_bench_clone_from(b, 1, 0, 0)
2813     }
2814
2815     #[bench]
2816     fn bench_clone_from_01_0000_0010(b: &mut Bencher) {
2817         do_bench_clone_from(b, 1, 0, 10)
2818     }
2819
2820     #[bench]
2821     fn bench_clone_from_01_0000_0100(b: &mut Bencher) {
2822         do_bench_clone_from(b, 1, 0, 100)
2823     }
2824
2825     #[bench]
2826     fn bench_clone_from_01_0000_1000(b: &mut Bencher) {
2827         do_bench_clone_from(b, 1, 0, 1000)
2828     }
2829
2830     #[bench]
2831     fn bench_clone_from_01_0010_0010(b: &mut Bencher) {
2832         do_bench_clone_from(b, 1, 10, 10)
2833     }
2834
2835     #[bench]
2836     fn bench_clone_from_01_0100_0100(b: &mut Bencher) {
2837         do_bench_clone_from(b, 1, 100, 100)
2838     }
2839
2840     #[bench]
2841     fn bench_clone_from_01_1000_1000(b: &mut Bencher) {
2842         do_bench_clone_from(b, 1, 1000, 1000)
2843     }
2844
2845     #[bench]
2846     fn bench_clone_from_01_0010_0100(b: &mut Bencher) {
2847         do_bench_clone_from(b, 1, 10, 100)
2848     }
2849
2850     #[bench]
2851     fn bench_clone_from_01_0100_1000(b: &mut Bencher) {
2852         do_bench_clone_from(b, 1, 100, 1000)
2853     }
2854
2855     #[bench]
2856     fn bench_clone_from_01_0010_0000(b: &mut Bencher) {
2857         do_bench_clone_from(b, 1, 10, 0)
2858     }
2859
2860     #[bench]
2861     fn bench_clone_from_01_0100_0010(b: &mut Bencher) {
2862         do_bench_clone_from(b, 1, 100, 10)
2863     }
2864
2865     #[bench]
2866     fn bench_clone_from_01_1000_0100(b: &mut Bencher) {
2867         do_bench_clone_from(b, 1, 1000, 100)
2868     }
2869
2870     #[bench]
2871     fn bench_clone_from_10_0000_0000(b: &mut Bencher) {
2872         do_bench_clone_from(b, 10, 0, 0)
2873     }
2874
2875     #[bench]
2876     fn bench_clone_from_10_0000_0010(b: &mut Bencher) {
2877         do_bench_clone_from(b, 10, 0, 10)
2878     }
2879
2880     #[bench]
2881     fn bench_clone_from_10_0000_0100(b: &mut Bencher) {
2882         do_bench_clone_from(b, 10, 0, 100)
2883     }
2884
2885     #[bench]
2886     fn bench_clone_from_10_0000_1000(b: &mut Bencher) {
2887         do_bench_clone_from(b, 10, 0, 1000)
2888     }
2889
2890     #[bench]
2891     fn bench_clone_from_10_0010_0010(b: &mut Bencher) {
2892         do_bench_clone_from(b, 10, 10, 10)
2893     }
2894
2895     #[bench]
2896     fn bench_clone_from_10_0100_0100(b: &mut Bencher) {
2897         do_bench_clone_from(b, 10, 100, 100)
2898     }
2899
2900     #[bench]
2901     fn bench_clone_from_10_1000_1000(b: &mut Bencher) {
2902         do_bench_clone_from(b, 10, 1000, 1000)
2903     }
2904
2905     #[bench]
2906     fn bench_clone_from_10_0010_0100(b: &mut Bencher) {
2907         do_bench_clone_from(b, 10, 10, 100)
2908     }
2909
2910     #[bench]
2911     fn bench_clone_from_10_0100_1000(b: &mut Bencher) {
2912         do_bench_clone_from(b, 10, 100, 1000)
2913     }
2914
2915     #[bench]
2916     fn bench_clone_from_10_0010_0000(b: &mut Bencher) {
2917         do_bench_clone_from(b, 10, 10, 0)
2918     }
2919
2920     #[bench]
2921     fn bench_clone_from_10_0100_0010(b: &mut Bencher) {
2922         do_bench_clone_from(b, 10, 100, 10)
2923     }
2924
2925     #[bench]
2926     fn bench_clone_from_10_1000_0100(b: &mut Bencher) {
2927         do_bench_clone_from(b, 10, 1000, 100)
2928     }
2929 }