]> git.lizzy.rs Git - rust.git/blob - src/liballoc/vec.rs
Rollup merge of #44562 - eddyb:ugh-rustdoc, r=nikomatsakis
[rust.git] / src / liballoc / 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 contiguous growable array type with heap-allocated contents, written
12 //! `Vec<T>`.
13 //!
14 //! Vectors have `O(1)` indexing, amortized `O(1)` push (to the end) and
15 //! `O(1)` pop (from the end).
16 //!
17 //! # Examples
18 //!
19 //! You can explicitly create a [`Vec<T>`] with [`new`]:
20 //!
21 //! ```
22 //! let v: Vec<i32> = Vec::new();
23 //! ```
24 //!
25 //! ...or by using the [`vec!`] macro:
26 //!
27 //! ```
28 //! let v: Vec<i32> = vec![];
29 //!
30 //! let v = vec![1, 2, 3, 4, 5];
31 //!
32 //! let v = vec![0; 10]; // ten zeroes
33 //! ```
34 //!
35 //! You can [`push`] values onto the end of a vector (which will grow the vector
36 //! as needed):
37 //!
38 //! ```
39 //! let mut v = vec![1, 2];
40 //!
41 //! v.push(3);
42 //! ```
43 //!
44 //! Popping values works in much the same way:
45 //!
46 //! ```
47 //! let mut v = vec![1, 2];
48 //!
49 //! let two = v.pop();
50 //! ```
51 //!
52 //! Vectors also support indexing (through the [`Index`] and [`IndexMut`] traits):
53 //!
54 //! ```
55 //! let mut v = vec![1, 2, 3];
56 //! let three = v[2];
57 //! v[1] = v[1] + 5;
58 //! ```
59 //!
60 //! [`Vec<T>`]: ../../std/vec/struct.Vec.html
61 //! [`new`]: ../../std/vec/struct.Vec.html#method.new
62 //! [`push`]: ../../std/vec/struct.Vec.html#method.push
63 //! [`Index`]: ../../std/ops/trait.Index.html
64 //! [`IndexMut`]: ../../std/ops/trait.IndexMut.html
65 //! [`vec!`]: ../../std/macro.vec.html
66
67 #![stable(feature = "rust1", since = "1.0.0")]
68
69 use core::cmp::Ordering;
70 use core::fmt;
71 use core::hash::{self, Hash};
72 use core::intrinsics::{arith_offset, assume};
73 use core::iter::{FromIterator, FusedIterator, TrustedLen};
74 use core::mem;
75 #[cfg(not(test))]
76 use core::num::Float;
77 use core::ops::{InPlace, Index, IndexMut, Place, Placer};
78 use core::ops;
79 use core::ptr;
80 use core::ptr::Shared;
81 use core::slice;
82
83 use borrow::ToOwned;
84 use borrow::Cow;
85 use boxed::Box;
86 use raw_vec::RawVec;
87 use super::range::RangeArgument;
88 use Bound::{Excluded, Included, Unbounded};
89
90 /// A contiguous growable array type, written `Vec<T>` but pronounced 'vector'.
91 ///
92 /// # Examples
93 ///
94 /// ```
95 /// let mut vec = Vec::new();
96 /// vec.push(1);
97 /// vec.push(2);
98 ///
99 /// assert_eq!(vec.len(), 2);
100 /// assert_eq!(vec[0], 1);
101 ///
102 /// assert_eq!(vec.pop(), Some(2));
103 /// assert_eq!(vec.len(), 1);
104 ///
105 /// vec[0] = 7;
106 /// assert_eq!(vec[0], 7);
107 ///
108 /// vec.extend([1, 2, 3].iter().cloned());
109 ///
110 /// for x in &vec {
111 ///     println!("{}", x);
112 /// }
113 /// assert_eq!(vec, [7, 1, 2, 3]);
114 /// ```
115 ///
116 /// The [`vec!`] macro is provided to make initialization more convenient:
117 ///
118 /// ```
119 /// let mut vec = vec![1, 2, 3];
120 /// vec.push(4);
121 /// assert_eq!(vec, [1, 2, 3, 4]);
122 /// ```
123 ///
124 /// It can also initialize each element of a `Vec<T>` with a given value:
125 ///
126 /// ```
127 /// let vec = vec![0; 5];
128 /// assert_eq!(vec, [0, 0, 0, 0, 0]);
129 /// ```
130 ///
131 /// Use a `Vec<T>` as an efficient stack:
132 ///
133 /// ```
134 /// let mut stack = Vec::new();
135 ///
136 /// stack.push(1);
137 /// stack.push(2);
138 /// stack.push(3);
139 ///
140 /// while let Some(top) = stack.pop() {
141 ///     // Prints 3, 2, 1
142 ///     println!("{}", top);
143 /// }
144 /// ```
145 ///
146 /// # Indexing
147 ///
148 /// The `Vec` type allows to access values by index, because it implements the
149 /// [`Index`] trait. An example will be more explicit:
150 ///
151 /// ```
152 /// let v = vec![0, 2, 4, 6];
153 /// println!("{}", v[1]); // it will display '2'
154 /// ```
155 ///
156 /// However be careful: if you try to access an index which isn't in the `Vec`,
157 /// your software will panic! You cannot do this:
158 ///
159 /// ```should_panic
160 /// let v = vec![0, 2, 4, 6];
161 /// println!("{}", v[6]); // it will panic!
162 /// ```
163 ///
164 /// In conclusion: always check if the index you want to get really exists
165 /// before doing it.
166 ///
167 /// # Slicing
168 ///
169 /// A `Vec` can be mutable. Slices, on the other hand, are read-only objects.
170 /// To get a slice, use `&`. Example:
171 ///
172 /// ```
173 /// fn read_slice(slice: &[usize]) {
174 ///     // ...
175 /// }
176 ///
177 /// let v = vec![0, 1];
178 /// read_slice(&v);
179 ///
180 /// // ... and that's all!
181 /// // you can also do it like this:
182 /// let x : &[usize] = &v;
183 /// ```
184 ///
185 /// In Rust, it's more common to pass slices as arguments rather than vectors
186 /// when you just want to provide a read access. The same goes for [`String`] and
187 /// [`&str`].
188 ///
189 /// # Capacity and reallocation
190 ///
191 /// The capacity of a vector is the amount of space allocated for any future
192 /// elements that will be added onto the vector. This is not to be confused with
193 /// the *length* of a vector, which specifies the number of actual elements
194 /// within the vector. If a vector's length exceeds its capacity, its capacity
195 /// will automatically be increased, but its elements will have to be
196 /// reallocated.
197 ///
198 /// For example, a vector with capacity 10 and length 0 would be an empty vector
199 /// with space for 10 more elements. Pushing 10 or fewer elements onto the
200 /// vector will not change its capacity or cause reallocation to occur. However,
201 /// if the vector's length is increased to 11, it will have to reallocate, which
202 /// can be slow. For this reason, it is recommended to use [`Vec::with_capacity`]
203 /// whenever possible to specify how big the vector is expected to get.
204 ///
205 /// # Guarantees
206 ///
207 /// Due to its incredibly fundamental nature, `Vec` makes a lot of guarantees
208 /// about its design. This ensures that it's as low-overhead as possible in
209 /// the general case, and can be correctly manipulated in primitive ways
210 /// by unsafe code. Note that these guarantees refer to an unqualified `Vec<T>`.
211 /// If additional type parameters are added (e.g. to support custom allocators),
212 /// overriding their defaults may change the behavior.
213 ///
214 /// Most fundamentally, `Vec` is and always will be a (pointer, capacity, length)
215 /// triplet. No more, no less. The order of these fields is completely
216 /// unspecified, and you should use the appropriate methods to modify these.
217 /// The pointer will never be null, so this type is null-pointer-optimized.
218 ///
219 /// However, the pointer may not actually point to allocated memory. In particular,
220 /// if you construct a `Vec` with capacity 0 via [`Vec::new`], [`vec![]`][`vec!`],
221 /// [`Vec::with_capacity(0)`][`Vec::with_capacity`], or by calling [`shrink_to_fit`]
222 /// on an empty Vec, it will not allocate memory. Similarly, if you store zero-sized
223 /// types inside a `Vec`, it will not allocate space for them. *Note that in this case
224 /// the `Vec` may not report a [`capacity`] of 0*. `Vec` will allocate if and only
225 /// if [`mem::size_of::<T>`]`() * capacity() > 0`. In general, `Vec`'s allocation
226 /// details are subtle enough that it is strongly recommended that you only
227 /// free memory allocated by a `Vec` by creating a new `Vec` and dropping it.
228 ///
229 /// If a `Vec` *has* allocated memory, then the memory it points to is on the heap
230 /// (as defined by the allocator Rust is configured to use by default), and its
231 /// pointer points to [`len`] initialized elements in order (what you would see
232 /// if you coerced it to a slice), followed by [`capacity`]` - `[`len`]
233 /// logically uninitialized elements.
234 ///
235 /// `Vec` will never perform a "small optimization" where elements are actually
236 /// stored on the stack for two reasons:
237 ///
238 /// * It would make it more difficult for unsafe code to correctly manipulate
239 ///   a `Vec`. The contents of a `Vec` wouldn't have a stable address if it were
240 ///   only moved, and it would be more difficult to determine if a `Vec` had
241 ///   actually allocated memory.
242 ///
243 /// * It would penalize the general case, incurring an additional branch
244 ///   on every access.
245 ///
246 /// `Vec` will never automatically shrink itself, even if completely empty. This
247 /// ensures no unnecessary allocations or deallocations occur. Emptying a `Vec`
248 /// and then filling it back up to the same [`len`] should incur no calls to
249 /// the allocator. If you wish to free up unused memory, use
250 /// [`shrink_to_fit`][`shrink_to_fit`].
251 ///
252 /// [`push`] and [`insert`] will never (re)allocate if the reported capacity is
253 /// sufficient. [`push`] and [`insert`] *will* (re)allocate if
254 /// [`len`]` == `[`capacity`]. That is, the reported capacity is completely
255 /// accurate, and can be relied on. It can even be used to manually free the memory
256 /// allocated by a `Vec` if desired. Bulk insertion methods *may* reallocate, even
257 /// when not necessary.
258 ///
259 /// `Vec` does not guarantee any particular growth strategy when reallocating
260 /// when full, nor when [`reserve`] is called. The current strategy is basic
261 /// and it may prove desirable to use a non-constant growth factor. Whatever
262 /// strategy is used will of course guarantee `O(1)` amortized [`push`].
263 ///
264 /// `vec![x; n]`, `vec![a, b, c, d]`, and
265 /// [`Vec::with_capacity(n)`][`Vec::with_capacity`], will all produce a `Vec`
266 /// with exactly the requested capacity. If [`len`]` == `[`capacity`],
267 /// (as is the case for the [`vec!`] macro), then a `Vec<T>` can be converted to
268 /// and from a [`Box<[T]>`][owned slice] without reallocating or moving the elements.
269 ///
270 /// `Vec` will not specifically overwrite any data that is removed from it,
271 /// but also won't specifically preserve it. Its uninitialized memory is
272 /// scratch space that it may use however it wants. It will generally just do
273 /// whatever is most efficient or otherwise easy to implement. Do not rely on
274 /// removed data to be erased for security purposes. Even if you drop a `Vec`, its
275 /// buffer may simply be reused by another `Vec`. Even if you zero a `Vec`'s memory
276 /// first, that may not actually happen because the optimizer does not consider
277 /// this a side-effect that must be preserved. There is one case which we will
278 /// not break, however: using `unsafe` code to write to the excess capacity,
279 /// and then increasing the length to match, is always valid.
280 ///
281 /// `Vec` does not currently guarantee the order in which elements are dropped
282 /// (the order has changed in the past, and may change again).
283 ///
284 /// [`vec!`]: ../../std/macro.vec.html
285 /// [`Index`]: ../../std/ops/trait.Index.html
286 /// [`String`]: ../../std/string/struct.String.html
287 /// [`&str`]: ../../std/primitive.str.html
288 /// [`Vec::with_capacity`]: ../../std/vec/struct.Vec.html#method.with_capacity
289 /// [`Vec::new`]: ../../std/vec/struct.Vec.html#method.new
290 /// [`shrink_to_fit`]: ../../std/vec/struct.Vec.html#method.shrink_to_fit
291 /// [`capacity`]: ../../std/vec/struct.Vec.html#method.capacity
292 /// [`mem::size_of::<T>`]: ../../std/mem/fn.size_of.html
293 /// [`len`]: ../../std/vec/struct.Vec.html#method.len
294 /// [`push`]: ../../std/vec/struct.Vec.html#method.push
295 /// [`insert`]: ../../std/vec/struct.Vec.html#method.insert
296 /// [`reserve`]: ../../std/vec/struct.Vec.html#method.reserve
297 /// [owned slice]: ../../std/boxed/struct.Box.html
298 #[stable(feature = "rust1", since = "1.0.0")]
299 pub struct Vec<T> {
300     buf: RawVec<T>,
301     len: usize,
302 }
303
304 ////////////////////////////////////////////////////////////////////////////////
305 // Inherent methods
306 ////////////////////////////////////////////////////////////////////////////////
307
308 impl<T> Vec<T> {
309     /// Constructs a new, empty `Vec<T>`.
310     ///
311     /// The vector will not allocate until elements are pushed onto it.
312     ///
313     /// # Examples
314     ///
315     /// ```
316     /// # #![allow(unused_mut)]
317     /// let mut vec: Vec<i32> = Vec::new();
318     /// ```
319     #[inline]
320     #[stable(feature = "rust1", since = "1.0.0")]
321     pub fn new() -> Vec<T> {
322         Vec {
323             buf: RawVec::new(),
324             len: 0,
325         }
326     }
327
328     /// Constructs a new, empty `Vec<T>` with the specified capacity.
329     ///
330     /// The vector will be able to hold exactly `capacity` elements without
331     /// reallocating. If `capacity` is 0, the vector will not allocate.
332     ///
333     /// It is important to note that this function does not specify the *length*
334     /// of the returned vector, but only the *capacity*. For an explanation of
335     /// the difference between length and capacity, see *[Capacity and reallocation]*.
336     ///
337     /// [Capacity and reallocation]: #capacity-and-reallocation
338     ///
339     /// # Examples
340     ///
341     /// ```
342     /// let mut vec = Vec::with_capacity(10);
343     ///
344     /// // The vector contains no items, even though it has capacity for more
345     /// assert_eq!(vec.len(), 0);
346     ///
347     /// // These are all done without reallocating...
348     /// for i in 0..10 {
349     ///     vec.push(i);
350     /// }
351     ///
352     /// // ...but this may make the vector reallocate
353     /// vec.push(11);
354     /// ```
355     #[inline]
356     #[stable(feature = "rust1", since = "1.0.0")]
357     pub fn with_capacity(capacity: usize) -> Vec<T> {
358         Vec {
359             buf: RawVec::with_capacity(capacity),
360             len: 0,
361         }
362     }
363
364     /// Creates a `Vec<T>` directly from the raw components of another vector.
365     ///
366     /// # Safety
367     ///
368     /// This is highly unsafe, due to the number of invariants that aren't
369     /// checked:
370     ///
371     /// * `ptr` needs to have been previously allocated via [`String`]/`Vec<T>`
372     ///   (at least, it's highly likely to be incorrect if it wasn't).
373     /// * `ptr`'s `T` needs to have the same size and alignment as it was allocated with.
374     /// * `length` needs to be less than or equal to `capacity`.
375     /// * `capacity` needs to be the capacity that the pointer was allocated with.
376     ///
377     /// Violating these may cause problems like corrupting the allocator's
378     /// internal data structures. For example it is **not** safe
379     /// to build a `Vec<u8>` from a pointer to a C `char` array and a `size_t`.
380     ///
381     /// The ownership of `ptr` is effectively transferred to the
382     /// `Vec<T>` which may then deallocate, reallocate or change the
383     /// contents of memory pointed to by the pointer at will. Ensure
384     /// that nothing else uses the pointer after calling this
385     /// function.
386     ///
387     /// [`String`]: ../../std/string/struct.String.html
388     ///
389     /// # Examples
390     ///
391     /// ```
392     /// use std::ptr;
393     /// use std::mem;
394     ///
395     /// fn main() {
396     ///     let mut v = vec![1, 2, 3];
397     ///
398     ///     // Pull out the various important pieces of information about `v`
399     ///     let p = v.as_mut_ptr();
400     ///     let len = v.len();
401     ///     let cap = v.capacity();
402     ///
403     ///     unsafe {
404     ///         // Cast `v` into the void: no destructor run, so we are in
405     ///         // complete control of the allocation to which `p` points.
406     ///         mem::forget(v);
407     ///
408     ///         // Overwrite memory with 4, 5, 6
409     ///         for i in 0..len as isize {
410     ///             ptr::write(p.offset(i), 4 + i);
411     ///         }
412     ///
413     ///         // Put everything back together into a Vec
414     ///         let rebuilt = Vec::from_raw_parts(p, len, cap);
415     ///         assert_eq!(rebuilt, [4, 5, 6]);
416     ///     }
417     /// }
418     /// ```
419     #[stable(feature = "rust1", since = "1.0.0")]
420     pub unsafe fn from_raw_parts(ptr: *mut T, length: usize, capacity: usize) -> Vec<T> {
421         Vec {
422             buf: RawVec::from_raw_parts(ptr, capacity),
423             len: length,
424         }
425     }
426
427     /// Returns the number of elements the vector can hold without
428     /// reallocating.
429     ///
430     /// # Examples
431     ///
432     /// ```
433     /// let vec: Vec<i32> = Vec::with_capacity(10);
434     /// assert_eq!(vec.capacity(), 10);
435     /// ```
436     #[inline]
437     #[stable(feature = "rust1", since = "1.0.0")]
438     pub fn capacity(&self) -> usize {
439         self.buf.cap()
440     }
441
442     /// Reserves capacity for at least `additional` more elements to be inserted
443     /// in the given `Vec<T>`. The collection may reserve more space to avoid
444     /// frequent reallocations. After calling `reserve`, capacity will be
445     /// greater than or equal to `self.len() + additional`. Does nothing if
446     /// capacity is already sufficient.
447     ///
448     /// # Panics
449     ///
450     /// Panics if the new capacity overflows `usize`.
451     ///
452     /// # Examples
453     ///
454     /// ```
455     /// let mut vec = vec![1];
456     /// vec.reserve(10);
457     /// assert!(vec.capacity() >= 11);
458     /// ```
459     #[stable(feature = "rust1", since = "1.0.0")]
460     pub fn reserve(&mut self, additional: usize) {
461         self.buf.reserve(self.len, additional);
462     }
463
464     /// Reserves the minimum capacity for exactly `additional` more elements to
465     /// be inserted in the given `Vec<T>`. After calling `reserve_exact`,
466     /// capacity will be greater than or equal to `self.len() + additional`.
467     /// Does nothing if the capacity is already sufficient.
468     ///
469     /// Note that the allocator may give the collection more space than it
470     /// requests. Therefore capacity can not be relied upon to be precisely
471     /// minimal. Prefer `reserve` if future insertions are expected.
472     ///
473     /// # Panics
474     ///
475     /// Panics if the new capacity overflows `usize`.
476     ///
477     /// # Examples
478     ///
479     /// ```
480     /// let mut vec = vec![1];
481     /// vec.reserve_exact(10);
482     /// assert!(vec.capacity() >= 11);
483     /// ```
484     #[stable(feature = "rust1", since = "1.0.0")]
485     pub fn reserve_exact(&mut self, additional: usize) {
486         self.buf.reserve_exact(self.len, additional);
487     }
488
489     /// Shrinks the capacity of the vector as much as possible.
490     ///
491     /// It will drop down as close as possible to the length but the allocator
492     /// may still inform the vector that there is space for a few more elements.
493     ///
494     /// # Examples
495     ///
496     /// ```
497     /// let mut vec = Vec::with_capacity(10);
498     /// vec.extend([1, 2, 3].iter().cloned());
499     /// assert_eq!(vec.capacity(), 10);
500     /// vec.shrink_to_fit();
501     /// assert!(vec.capacity() >= 3);
502     /// ```
503     #[stable(feature = "rust1", since = "1.0.0")]
504     pub fn shrink_to_fit(&mut self) {
505         self.buf.shrink_to_fit(self.len);
506     }
507
508     /// Converts the vector into [`Box<[T]>`][owned slice].
509     ///
510     /// Note that this will drop any excess capacity. Calling this and
511     /// converting back to a vector with [`into_vec`] is equivalent to calling
512     /// [`shrink_to_fit`].
513     ///
514     /// [owned slice]: ../../std/boxed/struct.Box.html
515     /// [`into_vec`]: ../../std/primitive.slice.html#method.into_vec
516     /// [`shrink_to_fit`]: #method.shrink_to_fit
517     ///
518     /// # Examples
519     ///
520     /// ```
521     /// let v = vec![1, 2, 3];
522     ///
523     /// let slice = v.into_boxed_slice();
524     /// ```
525     ///
526     /// Any excess capacity is removed:
527     ///
528     /// ```
529     /// let mut vec = Vec::with_capacity(10);
530     /// vec.extend([1, 2, 3].iter().cloned());
531     ///
532     /// assert_eq!(vec.capacity(), 10);
533     /// let slice = vec.into_boxed_slice();
534     /// assert_eq!(slice.into_vec().capacity(), 3);
535     /// ```
536     #[stable(feature = "rust1", since = "1.0.0")]
537     pub fn into_boxed_slice(mut self) -> Box<[T]> {
538         unsafe {
539             self.shrink_to_fit();
540             let buf = ptr::read(&self.buf);
541             mem::forget(self);
542             buf.into_box()
543         }
544     }
545
546     /// Shortens the vector, keeping the first `len` elements and dropping
547     /// the rest.
548     ///
549     /// If `len` is greater than the vector's current length, this has no
550     /// effect.
551     ///
552     /// The [`drain`] method can emulate `truncate`, but causes the excess
553     /// elements to be returned instead of dropped.
554     ///
555     /// Note that this method has no effect on the allocated capacity
556     /// of the vector.
557     ///
558     /// # Examples
559     ///
560     /// Truncating a five element vector to two elements:
561     ///
562     /// ```
563     /// let mut vec = vec![1, 2, 3, 4, 5];
564     /// vec.truncate(2);
565     /// assert_eq!(vec, [1, 2]);
566     /// ```
567     ///
568     /// No truncation occurs when `len` is greater than the vector's current
569     /// length:
570     ///
571     /// ```
572     /// let mut vec = vec![1, 2, 3];
573     /// vec.truncate(8);
574     /// assert_eq!(vec, [1, 2, 3]);
575     /// ```
576     ///
577     /// Truncating when `len == 0` is equivalent to calling the [`clear`]
578     /// method.
579     ///
580     /// ```
581     /// let mut vec = vec![1, 2, 3];
582     /// vec.truncate(0);
583     /// assert_eq!(vec, []);
584     /// ```
585     ///
586     /// [`clear`]: #method.clear
587     /// [`drain`]: #method.drain
588     #[stable(feature = "rust1", since = "1.0.0")]
589     pub fn truncate(&mut self, len: usize) {
590         unsafe {
591             // drop any extra elements
592             while len < self.len {
593                 // decrement len before the drop_in_place(), so a panic on Drop
594                 // doesn't re-drop the just-failed value.
595                 self.len -= 1;
596                 let len = self.len;
597                 ptr::drop_in_place(self.get_unchecked_mut(len));
598             }
599         }
600     }
601
602     /// Extracts a slice containing the entire vector.
603     ///
604     /// Equivalent to `&s[..]`.
605     ///
606     /// # Examples
607     ///
608     /// ```
609     /// use std::io::{self, Write};
610     /// let buffer = vec![1, 2, 3, 5, 8];
611     /// io::sink().write(buffer.as_slice()).unwrap();
612     /// ```
613     #[inline]
614     #[stable(feature = "vec_as_slice", since = "1.7.0")]
615     pub fn as_slice(&self) -> &[T] {
616         self
617     }
618
619     /// Extracts a mutable slice of the entire vector.
620     ///
621     /// Equivalent to `&mut s[..]`.
622     ///
623     /// # Examples
624     ///
625     /// ```
626     /// use std::io::{self, Read};
627     /// let mut buffer = vec![0; 3];
628     /// io::repeat(0b101).read_exact(buffer.as_mut_slice()).unwrap();
629     /// ```
630     #[inline]
631     #[stable(feature = "vec_as_slice", since = "1.7.0")]
632     pub fn as_mut_slice(&mut self) -> &mut [T] {
633         self
634     }
635
636     /// Sets the length of a vector.
637     ///
638     /// This will explicitly set the size of the vector, without actually
639     /// modifying its buffers, so it is up to the caller to ensure that the
640     /// vector is actually the specified size.
641     ///
642     /// # Examples
643     ///
644     /// ```
645     /// use std::ptr;
646     ///
647     /// let mut vec = vec!['r', 'u', 's', 't'];
648     ///
649     /// unsafe {
650     ///     ptr::drop_in_place(&mut vec[3]);
651     ///     vec.set_len(3);
652     /// }
653     /// assert_eq!(vec, ['r', 'u', 's']);
654     /// ```
655     ///
656     /// In this example, there is a memory leak since the memory locations
657     /// owned by the inner vectors were not freed prior to the `set_len` call:
658     ///
659     /// ```
660     /// let mut vec = vec![vec![1, 0, 0],
661     ///                    vec![0, 1, 0],
662     ///                    vec![0, 0, 1]];
663     /// unsafe {
664     ///     vec.set_len(0);
665     /// }
666     /// ```
667     ///
668     /// In this example, the vector gets expanded from zero to four items
669     /// without any memory allocations occurring, resulting in vector
670     /// values of unallocated memory:
671     ///
672     /// ```
673     /// let mut vec: Vec<char> = Vec::new();
674     ///
675     /// unsafe {
676     ///     vec.set_len(4);
677     /// }
678     /// ```
679     #[inline]
680     #[stable(feature = "rust1", since = "1.0.0")]
681     pub unsafe fn set_len(&mut self, len: usize) {
682         self.len = len;
683     }
684
685     /// Removes an element from the vector and returns it.
686     ///
687     /// The removed element is replaced by the last element of the vector.
688     ///
689     /// This does not preserve ordering, but is O(1).
690     ///
691     /// # Panics
692     ///
693     /// Panics if `index` is out of bounds.
694     ///
695     /// # Examples
696     ///
697     /// ```
698     /// let mut v = vec!["foo", "bar", "baz", "qux"];
699     ///
700     /// assert_eq!(v.swap_remove(1), "bar");
701     /// assert_eq!(v, ["foo", "qux", "baz"]);
702     ///
703     /// assert_eq!(v.swap_remove(0), "foo");
704     /// assert_eq!(v, ["baz", "qux"]);
705     /// ```
706     #[inline]
707     #[stable(feature = "rust1", since = "1.0.0")]
708     pub fn swap_remove(&mut self, index: usize) -> T {
709         let length = self.len();
710         self.swap(index, length - 1);
711         self.pop().unwrap()
712     }
713
714     /// Inserts an element at position `index` within the vector, shifting all
715     /// elements after it to the right.
716     ///
717     /// # Panics
718     ///
719     /// Panics if `index` is out of bounds.
720     ///
721     /// # Examples
722     ///
723     /// ```
724     /// let mut vec = vec![1, 2, 3];
725     /// vec.insert(1, 4);
726     /// assert_eq!(vec, [1, 4, 2, 3]);
727     /// vec.insert(4, 5);
728     /// assert_eq!(vec, [1, 4, 2, 3, 5]);
729     /// ```
730     #[stable(feature = "rust1", since = "1.0.0")]
731     pub fn insert(&mut self, index: usize, element: T) {
732         let len = self.len();
733         assert!(index <= len);
734
735         // space for the new element
736         if len == self.buf.cap() {
737             self.buf.double();
738         }
739
740         unsafe {
741             // infallible
742             // The spot to put the new value
743             {
744                 let p = self.as_mut_ptr().offset(index as isize);
745                 // Shift everything over to make space. (Duplicating the
746                 // `index`th element into two consecutive places.)
747                 ptr::copy(p, p.offset(1), len - index);
748                 // Write it in, overwriting the first copy of the `index`th
749                 // element.
750                 ptr::write(p, element);
751             }
752             self.set_len(len + 1);
753         }
754     }
755
756     /// Removes and returns the element at position `index` within the vector,
757     /// shifting all elements after it to the left.
758     ///
759     /// # Panics
760     ///
761     /// Panics if `index` is out of bounds.
762     ///
763     /// # Examples
764     ///
765     /// ```
766     /// let mut v = vec![1, 2, 3];
767     /// assert_eq!(v.remove(1), 2);
768     /// assert_eq!(v, [1, 3]);
769     /// ```
770     #[stable(feature = "rust1", since = "1.0.0")]
771     pub fn remove(&mut self, index: usize) -> T {
772         let len = self.len();
773         assert!(index < len);
774         unsafe {
775             // infallible
776             let ret;
777             {
778                 // the place we are taking from.
779                 let ptr = self.as_mut_ptr().offset(index as isize);
780                 // copy it out, unsafely having a copy of the value on
781                 // the stack and in the vector at the same time.
782                 ret = ptr::read(ptr);
783
784                 // Shift everything down to fill in that spot.
785                 ptr::copy(ptr.offset(1), ptr, len - index - 1);
786             }
787             self.set_len(len - 1);
788             ret
789         }
790     }
791
792     /// Retains only the elements specified by the predicate.
793     ///
794     /// In other words, remove all elements `e` such that `f(&e)` returns `false`.
795     /// This method operates in place and preserves the order of the retained
796     /// elements.
797     ///
798     /// # Examples
799     ///
800     /// ```
801     /// let mut vec = vec![1, 2, 3, 4];
802     /// vec.retain(|&x| x%2 == 0);
803     /// assert_eq!(vec, [2, 4]);
804     /// ```
805     #[stable(feature = "rust1", since = "1.0.0")]
806     pub fn retain<F>(&mut self, mut f: F)
807         where F: FnMut(&T) -> bool
808     {
809         let len = self.len();
810         let mut del = 0;
811         {
812             let v = &mut **self;
813
814             for i in 0..len {
815                 if !f(&v[i]) {
816                     del += 1;
817                 } else if del > 0 {
818                     v.swap(i - del, i);
819                 }
820             }
821         }
822         if del > 0 {
823             self.truncate(len - del);
824         }
825     }
826
827     /// Removes all but the first of consecutive elements in the vector that resolve to the same
828     /// key.
829     ///
830     /// If the vector is sorted, this removes all duplicates.
831     ///
832     /// # Examples
833     ///
834     /// ```
835     /// let mut vec = vec![10, 20, 21, 30, 20];
836     ///
837     /// vec.dedup_by_key(|i| *i / 10);
838     ///
839     /// assert_eq!(vec, [10, 20, 30, 20]);
840     /// ```
841     #[stable(feature = "dedup_by", since = "1.16.0")]
842     #[inline]
843     pub fn dedup_by_key<F, K>(&mut self, mut key: F) where F: FnMut(&mut T) -> K, K: PartialEq {
844         self.dedup_by(|a, b| key(a) == key(b))
845     }
846
847     /// Removes all but the first of consecutive elements in the vector satisfying a given equality
848     /// relation.
849     ///
850     /// The `same_bucket` function is passed references to two elements from the vector, and
851     /// returns `true` if the elements compare equal, or `false` if they do not. The elements are
852     /// passed in opposite order from their order in the vector, so if `same_bucket(a, b)` returns
853     /// `true`, `a` is removed.
854     ///
855     /// If the vector is sorted, this removes all duplicates.
856     ///
857     /// # Examples
858     ///
859     /// ```
860     /// use std::ascii::AsciiExt;
861     ///
862     /// let mut vec = vec!["foo", "bar", "Bar", "baz", "bar"];
863     ///
864     /// vec.dedup_by(|a, b| a.eq_ignore_ascii_case(b));
865     ///
866     /// assert_eq!(vec, ["foo", "bar", "baz", "bar"]);
867     /// ```
868     #[stable(feature = "dedup_by", since = "1.16.0")]
869     pub fn dedup_by<F>(&mut self, mut same_bucket: F) where F: FnMut(&mut T, &mut T) -> bool {
870         unsafe {
871             // Although we have a mutable reference to `self`, we cannot make
872             // *arbitrary* changes. The `same_bucket` calls could panic, so we
873             // must ensure that the vector is in a valid state at all time.
874             //
875             // The way that we handle this is by using swaps; we iterate
876             // over all the elements, swapping as we go so that at the end
877             // the elements we wish to keep are in the front, and those we
878             // wish to reject are at the back. We can then truncate the
879             // vector. This operation is still O(n).
880             //
881             // Example: We start in this state, where `r` represents "next
882             // read" and `w` represents "next_write`.
883             //
884             //           r
885             //     +---+---+---+---+---+---+
886             //     | 0 | 1 | 1 | 2 | 3 | 3 |
887             //     +---+---+---+---+---+---+
888             //           w
889             //
890             // Comparing self[r] against self[w-1], this is not a duplicate, so
891             // we swap self[r] and self[w] (no effect as r==w) and then increment both
892             // r and w, leaving us with:
893             //
894             //               r
895             //     +---+---+---+---+---+---+
896             //     | 0 | 1 | 1 | 2 | 3 | 3 |
897             //     +---+---+---+---+---+---+
898             //               w
899             //
900             // Comparing self[r] against self[w-1], this value is a duplicate,
901             // so we increment `r` but leave everything else unchanged:
902             //
903             //                   r
904             //     +---+---+---+---+---+---+
905             //     | 0 | 1 | 1 | 2 | 3 | 3 |
906             //     +---+---+---+---+---+---+
907             //               w
908             //
909             // Comparing self[r] against self[w-1], this is not a duplicate,
910             // so swap self[r] and self[w] and advance r and w:
911             //
912             //                       r
913             //     +---+---+---+---+---+---+
914             //     | 0 | 1 | 2 | 1 | 3 | 3 |
915             //     +---+---+---+---+---+---+
916             //                   w
917             //
918             // Not a duplicate, repeat:
919             //
920             //                           r
921             //     +---+---+---+---+---+---+
922             //     | 0 | 1 | 2 | 3 | 1 | 3 |
923             //     +---+---+---+---+---+---+
924             //                       w
925             //
926             // Duplicate, advance r. End of vec. Truncate to w.
927
928             let ln = self.len();
929             if ln <= 1 {
930                 return;
931             }
932
933             // Avoid bounds checks by using raw pointers.
934             let p = self.as_mut_ptr();
935             let mut r: usize = 1;
936             let mut w: usize = 1;
937
938             while r < ln {
939                 let p_r = p.offset(r as isize);
940                 let p_wm1 = p.offset((w - 1) as isize);
941                 if !same_bucket(&mut *p_r, &mut *p_wm1) {
942                     if r != w {
943                         let p_w = p_wm1.offset(1);
944                         mem::swap(&mut *p_r, &mut *p_w);
945                     }
946                     w += 1;
947                 }
948                 r += 1;
949             }
950
951             self.truncate(w);
952         }
953     }
954
955     /// Appends an element to the back of a collection.
956     ///
957     /// # Panics
958     ///
959     /// Panics if the number of elements in the vector overflows a `usize`.
960     ///
961     /// # Examples
962     ///
963     /// ```
964     /// let mut vec = vec![1, 2];
965     /// vec.push(3);
966     /// assert_eq!(vec, [1, 2, 3]);
967     /// ```
968     #[inline]
969     #[stable(feature = "rust1", since = "1.0.0")]
970     pub fn push(&mut self, value: T) {
971         // This will panic or abort if we would allocate > isize::MAX bytes
972         // or if the length increment would overflow for zero-sized types.
973         if self.len == self.buf.cap() {
974             self.buf.double();
975         }
976         unsafe {
977             let end = self.as_mut_ptr().offset(self.len as isize);
978             ptr::write(end, value);
979             self.len += 1;
980         }
981     }
982
983     /// Returns a place for insertion at the back of the `Vec`.
984     ///
985     /// Using this method with placement syntax is equivalent to [`push`](#method.push),
986     /// but may be more efficient.
987     ///
988     /// # Examples
989     ///
990     /// ```
991     /// #![feature(collection_placement)]
992     /// #![feature(placement_in_syntax)]
993     ///
994     /// let mut vec = vec![1, 2];
995     /// vec.place_back() <- 3;
996     /// vec.place_back() <- 4;
997     /// assert_eq!(&vec, &[1, 2, 3, 4]);
998     /// ```
999     #[unstable(feature = "collection_placement",
1000                reason = "placement protocol is subject to change",
1001                issue = "30172")]
1002     pub fn place_back(&mut self) -> PlaceBack<T> {
1003         PlaceBack { vec: self }
1004     }
1005
1006     /// Removes the last element from a vector and returns it, or [`None`] if it
1007     /// is empty.
1008     ///
1009     /// [`None`]: ../../std/option/enum.Option.html#variant.None
1010     ///
1011     /// # Examples
1012     ///
1013     /// ```
1014     /// let mut vec = vec![1, 2, 3];
1015     /// assert_eq!(vec.pop(), Some(3));
1016     /// assert_eq!(vec, [1, 2]);
1017     /// ```
1018     #[inline]
1019     #[stable(feature = "rust1", since = "1.0.0")]
1020     pub fn pop(&mut self) -> Option<T> {
1021         if self.len == 0 {
1022             None
1023         } else {
1024             unsafe {
1025                 self.len -= 1;
1026                 Some(ptr::read(self.get_unchecked(self.len())))
1027             }
1028         }
1029     }
1030
1031     /// Moves all the elements of `other` into `Self`, leaving `other` empty.
1032     ///
1033     /// # Panics
1034     ///
1035     /// Panics if the number of elements in the vector overflows a `usize`.
1036     ///
1037     /// # Examples
1038     ///
1039     /// ```
1040     /// let mut vec = vec![1, 2, 3];
1041     /// let mut vec2 = vec![4, 5, 6];
1042     /// vec.append(&mut vec2);
1043     /// assert_eq!(vec, [1, 2, 3, 4, 5, 6]);
1044     /// assert_eq!(vec2, []);
1045     /// ```
1046     #[inline]
1047     #[stable(feature = "append", since = "1.4.0")]
1048     pub fn append(&mut self, other: &mut Self) {
1049         unsafe {
1050             self.append_elements(other.as_slice() as _);
1051             other.set_len(0);
1052         }
1053     }
1054
1055     /// Appends elements to `Self` from other buffer.
1056     #[inline]
1057     unsafe fn append_elements(&mut self, other: *const [T]) {
1058         let count = (*other).len();
1059         self.reserve(count);
1060         let len = self.len();
1061         ptr::copy_nonoverlapping(other as *const T, self.get_unchecked_mut(len), count);
1062         self.len += count;
1063     }
1064
1065     /// Creates a draining iterator that removes the specified range in the vector
1066     /// and yields the removed items.
1067     ///
1068     /// Note 1: The element range is removed even if the iterator is only
1069     /// partially consumed or not consumed at all.
1070     ///
1071     /// Note 2: It is unspecified how many elements are removed from the vector
1072     /// if the `Drain` value is leaked.
1073     ///
1074     /// # Panics
1075     ///
1076     /// Panics if the starting point is greater than the end point or if
1077     /// the end point is greater than the length of the vector.
1078     ///
1079     /// # Examples
1080     ///
1081     /// ```
1082     /// let mut v = vec![1, 2, 3];
1083     /// let u: Vec<_> = v.drain(1..).collect();
1084     /// assert_eq!(v, &[1]);
1085     /// assert_eq!(u, &[2, 3]);
1086     ///
1087     /// // A full range clears the vector
1088     /// v.drain(..);
1089     /// assert_eq!(v, &[]);
1090     /// ```
1091     #[stable(feature = "drain", since = "1.6.0")]
1092     pub fn drain<R>(&mut self, range: R) -> Drain<T>
1093         where R: RangeArgument<usize>
1094     {
1095         // Memory safety
1096         //
1097         // When the Drain is first created, it shortens the length of
1098         // the source vector to make sure no uninitalized or moved-from elements
1099         // are accessible at all if the Drain's destructor never gets to run.
1100         //
1101         // Drain will ptr::read out the values to remove.
1102         // When finished, remaining tail of the vec is copied back to cover
1103         // the hole, and the vector length is restored to the new length.
1104         //
1105         let len = self.len();
1106         let start = match range.start() {
1107             Included(&n) => n,
1108             Excluded(&n) => n + 1,
1109             Unbounded    => 0,
1110         };
1111         let end = match range.end() {
1112             Included(&n) => n + 1,
1113             Excluded(&n) => n,
1114             Unbounded    => len,
1115         };
1116         assert!(start <= end);
1117         assert!(end <= len);
1118
1119         unsafe {
1120             // set self.vec length's to start, to be safe in case Drain is leaked
1121             self.set_len(start);
1122             // Use the borrow in the IterMut to indicate borrowing behavior of the
1123             // whole Drain iterator (like &mut T).
1124             let range_slice = slice::from_raw_parts_mut(self.as_mut_ptr().offset(start as isize),
1125                                                         end - start);
1126             Drain {
1127                 tail_start: end,
1128                 tail_len: len - end,
1129                 iter: range_slice.iter(),
1130                 vec: Shared::from(self),
1131             }
1132         }
1133     }
1134
1135     /// Clears the vector, removing all values.
1136     ///
1137     /// Note that this method has no effect on the allocated capacity
1138     /// of the vector.
1139     ///
1140     /// # Examples
1141     ///
1142     /// ```
1143     /// let mut v = vec![1, 2, 3];
1144     ///
1145     /// v.clear();
1146     ///
1147     /// assert!(v.is_empty());
1148     /// ```
1149     #[inline]
1150     #[stable(feature = "rust1", since = "1.0.0")]
1151     pub fn clear(&mut self) {
1152         self.truncate(0)
1153     }
1154
1155     /// Returns the number of elements in the vector, also referred to
1156     /// as its 'length'.
1157     ///
1158     /// # Examples
1159     ///
1160     /// ```
1161     /// let a = vec![1, 2, 3];
1162     /// assert_eq!(a.len(), 3);
1163     /// ```
1164     #[inline]
1165     #[stable(feature = "rust1", since = "1.0.0")]
1166     pub fn len(&self) -> usize {
1167         self.len
1168     }
1169
1170     /// Returns `true` if the vector contains no elements.
1171     ///
1172     /// # Examples
1173     ///
1174     /// ```
1175     /// let mut v = Vec::new();
1176     /// assert!(v.is_empty());
1177     ///
1178     /// v.push(1);
1179     /// assert!(!v.is_empty());
1180     /// ```
1181     #[stable(feature = "rust1", since = "1.0.0")]
1182     pub fn is_empty(&self) -> bool {
1183         self.len() == 0
1184     }
1185
1186     /// Splits the collection into two at the given index.
1187     ///
1188     /// Returns a newly allocated `Self`. `self` contains elements `[0, at)`,
1189     /// and the returned `Self` contains elements `[at, len)`.
1190     ///
1191     /// Note that the capacity of `self` does not change.
1192     ///
1193     /// # Panics
1194     ///
1195     /// Panics if `at > len`.
1196     ///
1197     /// # Examples
1198     ///
1199     /// ```
1200     /// let mut vec = vec![1,2,3];
1201     /// let vec2 = vec.split_off(1);
1202     /// assert_eq!(vec, [1]);
1203     /// assert_eq!(vec2, [2, 3]);
1204     /// ```
1205     #[inline]
1206     #[stable(feature = "split_off", since = "1.4.0")]
1207     pub fn split_off(&mut self, at: usize) -> Self {
1208         assert!(at <= self.len(), "`at` out of bounds");
1209
1210         let other_len = self.len - at;
1211         let mut other = Vec::with_capacity(other_len);
1212
1213         // Unsafely `set_len` and copy items to `other`.
1214         unsafe {
1215             self.set_len(at);
1216             other.set_len(other_len);
1217
1218             ptr::copy_nonoverlapping(self.as_ptr().offset(at as isize),
1219                                      other.as_mut_ptr(),
1220                                      other.len());
1221         }
1222         other
1223     }
1224 }
1225
1226 impl<T: Clone> Vec<T> {
1227     /// Resizes the `Vec` in-place so that `len` is equal to `new_len`.
1228     ///
1229     /// If `new_len` is greater than `len`, the `Vec` is extended by the
1230     /// difference, with each additional slot filled with `value`.
1231     /// If `new_len` is less than `len`, the `Vec` is simply truncated.
1232     ///
1233     /// This method requires `Clone` to clone the passed value. If you'd
1234     /// rather create a value with `Default` instead, see [`resize_default`].
1235     ///
1236     /// # Examples
1237     ///
1238     /// ```
1239     /// let mut vec = vec!["hello"];
1240     /// vec.resize(3, "world");
1241     /// assert_eq!(vec, ["hello", "world", "world"]);
1242     ///
1243     /// let mut vec = vec![1, 2, 3, 4];
1244     /// vec.resize(2, 0);
1245     /// assert_eq!(vec, [1, 2]);
1246     /// ```
1247     ///
1248     /// [`resize_default`]: #method.resize_default
1249     #[stable(feature = "vec_resize", since = "1.5.0")]
1250     pub fn resize(&mut self, new_len: usize, value: T) {
1251         let len = self.len();
1252
1253         if new_len > len {
1254             self.extend_with(new_len - len, ExtendElement(value))
1255         } else {
1256             self.truncate(new_len);
1257         }
1258     }
1259
1260     /// Clones and appends all elements in a slice to the `Vec`.
1261     ///
1262     /// Iterates over the slice `other`, clones each element, and then appends
1263     /// it to this `Vec`. The `other` vector is traversed in-order.
1264     ///
1265     /// Note that this function is same as `extend` except that it is
1266     /// specialized to work with slices instead. If and when Rust gets
1267     /// specialization this function will likely be deprecated (but still
1268     /// available).
1269     ///
1270     /// # Examples
1271     ///
1272     /// ```
1273     /// let mut vec = vec![1];
1274     /// vec.extend_from_slice(&[2, 3, 4]);
1275     /// assert_eq!(vec, [1, 2, 3, 4]);
1276     /// ```
1277     #[stable(feature = "vec_extend_from_slice", since = "1.6.0")]
1278     pub fn extend_from_slice(&mut self, other: &[T]) {
1279         self.spec_extend(other.iter())
1280     }
1281 }
1282
1283 impl<T: Default> Vec<T> {
1284     /// Resizes the `Vec` in-place so that `len` is equal to `new_len`.
1285     ///
1286     /// If `new_len` is greater than `len`, the `Vec` is extended by the
1287     /// difference, with each additional slot filled with `Default::default()`.
1288     /// If `new_len` is less than `len`, the `Vec` is simply truncated.
1289     ///
1290     /// This method uses `Default` to create new values on every push. If
1291     /// you'd rather `Clone` a given value, use [`resize`].
1292     ///
1293     ///
1294     /// # Examples
1295     ///
1296     /// ```
1297     /// #![feature(vec_resize_default)]
1298     ///
1299     /// let mut vec = vec![1, 2, 3];
1300     /// vec.resize_default(5);
1301     /// assert_eq!(vec, [1, 2, 3, 0, 0]);
1302     ///
1303     /// let mut vec = vec![1, 2, 3, 4];
1304     /// vec.resize_default(2);
1305     /// assert_eq!(vec, [1, 2]);
1306     /// ```
1307     ///
1308     /// [`resize`]: #method.resize
1309     #[unstable(feature = "vec_resize_default", issue = "41758")]
1310     pub fn resize_default(&mut self, new_len: usize) {
1311         let len = self.len();
1312
1313         if new_len > len {
1314             self.extend_with(new_len - len, ExtendDefault);
1315         } else {
1316             self.truncate(new_len);
1317         }
1318     }
1319 }
1320
1321 // This code generalises `extend_with_{element,default}`.
1322 trait ExtendWith<T> {
1323     fn next(&self) -> T;
1324     fn last(self) -> T;
1325 }
1326
1327 struct ExtendElement<T>(T);
1328 impl<T: Clone> ExtendWith<T> for ExtendElement<T> {
1329     fn next(&self) -> T { self.0.clone() }
1330     fn last(self) -> T { self.0 }
1331 }
1332
1333 struct ExtendDefault;
1334 impl<T: Default> ExtendWith<T> for ExtendDefault {
1335     fn next(&self) -> T { Default::default() }
1336     fn last(self) -> T { Default::default() }
1337 }
1338 impl<T> Vec<T> {
1339     /// Extend the vector by `n` values, using the given generator.
1340     fn extend_with<E: ExtendWith<T>>(&mut self, n: usize, value: E) {
1341         self.reserve(n);
1342
1343         unsafe {
1344             let mut ptr = self.as_mut_ptr().offset(self.len() as isize);
1345             // Use SetLenOnDrop to work around bug where compiler
1346             // may not realize the store through `ptr` through self.set_len()
1347             // don't alias.
1348             let mut local_len = SetLenOnDrop::new(&mut self.len);
1349
1350             // Write all elements except the last one
1351             for _ in 1..n {
1352                 ptr::write(ptr, value.next());
1353                 ptr = ptr.offset(1);
1354                 // Increment the length in every step in case next() panics
1355                 local_len.increment_len(1);
1356             }
1357
1358             if n > 0 {
1359                 // We can write the last element directly without cloning needlessly
1360                 ptr::write(ptr, value.last());
1361                 local_len.increment_len(1);
1362             }
1363
1364             // len set by scope guard
1365         }
1366     }
1367 }
1368
1369 // Set the length of the vec when the `SetLenOnDrop` value goes out of scope.
1370 //
1371 // The idea is: The length field in SetLenOnDrop is a local variable
1372 // that the optimizer will see does not alias with any stores through the Vec's data
1373 // pointer. This is a workaround for alias analysis issue #32155
1374 struct SetLenOnDrop<'a> {
1375     len: &'a mut usize,
1376     local_len: usize,
1377 }
1378
1379 impl<'a> SetLenOnDrop<'a> {
1380     #[inline]
1381     fn new(len: &'a mut usize) -> Self {
1382         SetLenOnDrop { local_len: *len, len: len }
1383     }
1384
1385     #[inline]
1386     fn increment_len(&mut self, increment: usize) {
1387         self.local_len += increment;
1388     }
1389 }
1390
1391 impl<'a> Drop for SetLenOnDrop<'a> {
1392     #[inline]
1393     fn drop(&mut self) {
1394         *self.len = self.local_len;
1395     }
1396 }
1397
1398 impl<T: PartialEq> Vec<T> {
1399     /// Removes consecutive repeated elements in the vector.
1400     ///
1401     /// If the vector is sorted, this removes all duplicates.
1402     ///
1403     /// # Examples
1404     ///
1405     /// ```
1406     /// let mut vec = vec![1, 2, 2, 3, 2];
1407     ///
1408     /// vec.dedup();
1409     ///
1410     /// assert_eq!(vec, [1, 2, 3, 2]);
1411     /// ```
1412     #[stable(feature = "rust1", since = "1.0.0")]
1413     #[inline]
1414     pub fn dedup(&mut self) {
1415         self.dedup_by(|a, b| a == b)
1416     }
1417
1418     /// Removes the first instance of `item` from the vector if the item exists.
1419     ///
1420     /// # Examples
1421     ///
1422     /// ```
1423     /// # #![feature(vec_remove_item)]
1424     /// let mut vec = vec![1, 2, 3, 1];
1425     ///
1426     /// vec.remove_item(&1);
1427     ///
1428     /// assert_eq!(vec, vec![2, 3, 1]);
1429     /// ```
1430     #[unstable(feature = "vec_remove_item", reason = "recently added", issue = "40062")]
1431     pub fn remove_item(&mut self, item: &T) -> Option<T> {
1432         let pos = match self.iter().position(|x| *x == *item) {
1433             Some(x) => x,
1434             None => return None,
1435         };
1436         Some(self.remove(pos))
1437     }
1438 }
1439
1440 ////////////////////////////////////////////////////////////////////////////////
1441 // Internal methods and functions
1442 ////////////////////////////////////////////////////////////////////////////////
1443
1444 #[doc(hidden)]
1445 #[stable(feature = "rust1", since = "1.0.0")]
1446 pub fn from_elem<T: Clone>(elem: T, n: usize) -> Vec<T> {
1447     <T as SpecFromElem>::from_elem(elem, n)
1448 }
1449
1450 // Specialization trait used for Vec::from_elem
1451 trait SpecFromElem: Sized {
1452     fn from_elem(elem: Self, n: usize) -> Vec<Self>;
1453 }
1454
1455 impl<T: Clone> SpecFromElem for T {
1456     default fn from_elem(elem: Self, n: usize) -> Vec<Self> {
1457         let mut v = Vec::with_capacity(n);
1458         v.extend_with(n, ExtendElement(elem));
1459         v
1460     }
1461 }
1462
1463 impl SpecFromElem for u8 {
1464     #[inline]
1465     fn from_elem(elem: u8, n: usize) -> Vec<u8> {
1466         if elem == 0 {
1467             return Vec {
1468                 buf: RawVec::with_capacity_zeroed(n),
1469                 len: n,
1470             }
1471         }
1472         unsafe {
1473             let mut v = Vec::with_capacity(n);
1474             ptr::write_bytes(v.as_mut_ptr(), elem, n);
1475             v.set_len(n);
1476             v
1477         }
1478     }
1479 }
1480
1481 macro_rules! impl_spec_from_elem {
1482     ($t: ty, $is_zero: expr) => {
1483         impl SpecFromElem for $t {
1484             #[inline]
1485             fn from_elem(elem: $t, n: usize) -> Vec<$t> {
1486                 if $is_zero(elem) {
1487                     return Vec {
1488                         buf: RawVec::with_capacity_zeroed(n),
1489                         len: n,
1490                     }
1491                 }
1492                 let mut v = Vec::with_capacity(n);
1493                 v.extend_with(n, ExtendElement(elem));
1494                 v
1495             }
1496         }
1497     };
1498 }
1499
1500 impl_spec_from_elem!(i8, |x| x == 0);
1501 impl_spec_from_elem!(i16, |x| x == 0);
1502 impl_spec_from_elem!(i32, |x| x == 0);
1503 impl_spec_from_elem!(i64, |x| x == 0);
1504 impl_spec_from_elem!(i128, |x| x == 0);
1505 impl_spec_from_elem!(isize, |x| x == 0);
1506
1507 impl_spec_from_elem!(u16, |x| x == 0);
1508 impl_spec_from_elem!(u32, |x| x == 0);
1509 impl_spec_from_elem!(u64, |x| x == 0);
1510 impl_spec_from_elem!(u128, |x| x == 0);
1511 impl_spec_from_elem!(usize, |x| x == 0);
1512
1513 impl_spec_from_elem!(f32, |x: f32| x == 0. && x.is_sign_positive());
1514 impl_spec_from_elem!(f64, |x: f64| x == 0. && x.is_sign_positive());
1515
1516 ////////////////////////////////////////////////////////////////////////////////
1517 // Common trait implementations for Vec
1518 ////////////////////////////////////////////////////////////////////////////////
1519
1520 #[stable(feature = "rust1", since = "1.0.0")]
1521 impl<T: Clone> Clone for Vec<T> {
1522     #[cfg(not(test))]
1523     fn clone(&self) -> Vec<T> {
1524         <[T]>::to_vec(&**self)
1525     }
1526
1527     // HACK(japaric): with cfg(test) the inherent `[T]::to_vec` method, which is
1528     // required for this method definition, is not available. Instead use the
1529     // `slice::to_vec`  function which is only available with cfg(test)
1530     // NB see the slice::hack module in slice.rs for more information
1531     #[cfg(test)]
1532     fn clone(&self) -> Vec<T> {
1533         ::slice::to_vec(&**self)
1534     }
1535
1536     fn clone_from(&mut self, other: &Vec<T>) {
1537         other.as_slice().clone_into(self);
1538     }
1539 }
1540
1541 #[stable(feature = "rust1", since = "1.0.0")]
1542 impl<T: Hash> Hash for Vec<T> {
1543     #[inline]
1544     fn hash<H: hash::Hasher>(&self, state: &mut H) {
1545         Hash::hash(&**self, state)
1546     }
1547 }
1548
1549 #[stable(feature = "rust1", since = "1.0.0")]
1550 impl<T> Index<usize> for Vec<T> {
1551     type Output = T;
1552
1553     #[inline]
1554     fn index(&self, index: usize) -> &T {
1555         // NB built-in indexing via `&[T]`
1556         &(**self)[index]
1557     }
1558 }
1559
1560 #[stable(feature = "rust1", since = "1.0.0")]
1561 impl<T> IndexMut<usize> for Vec<T> {
1562     #[inline]
1563     fn index_mut(&mut self, index: usize) -> &mut T {
1564         // NB built-in indexing via `&mut [T]`
1565         &mut (**self)[index]
1566     }
1567 }
1568
1569
1570 #[stable(feature = "rust1", since = "1.0.0")]
1571 impl<T> ops::Index<ops::Range<usize>> for Vec<T> {
1572     type Output = [T];
1573
1574     #[inline]
1575     fn index(&self, index: ops::Range<usize>) -> &[T] {
1576         Index::index(&**self, index)
1577     }
1578 }
1579 #[stable(feature = "rust1", since = "1.0.0")]
1580 impl<T> ops::Index<ops::RangeTo<usize>> for Vec<T> {
1581     type Output = [T];
1582
1583     #[inline]
1584     fn index(&self, index: ops::RangeTo<usize>) -> &[T] {
1585         Index::index(&**self, index)
1586     }
1587 }
1588 #[stable(feature = "rust1", since = "1.0.0")]
1589 impl<T> ops::Index<ops::RangeFrom<usize>> for Vec<T> {
1590     type Output = [T];
1591
1592     #[inline]
1593     fn index(&self, index: ops::RangeFrom<usize>) -> &[T] {
1594         Index::index(&**self, index)
1595     }
1596 }
1597 #[stable(feature = "rust1", since = "1.0.0")]
1598 impl<T> ops::Index<ops::RangeFull> for Vec<T> {
1599     type Output = [T];
1600
1601     #[inline]
1602     fn index(&self, _index: ops::RangeFull) -> &[T] {
1603         self
1604     }
1605 }
1606 #[unstable(feature = "inclusive_range", reason = "recently added, follows RFC", issue = "28237")]
1607 impl<T> ops::Index<ops::RangeInclusive<usize>> for Vec<T> {
1608     type Output = [T];
1609
1610     #[inline]
1611     fn index(&self, index: ops::RangeInclusive<usize>) -> &[T] {
1612         Index::index(&**self, index)
1613     }
1614 }
1615 #[unstable(feature = "inclusive_range", reason = "recently added, follows RFC", issue = "28237")]
1616 impl<T> ops::Index<ops::RangeToInclusive<usize>> for Vec<T> {
1617     type Output = [T];
1618
1619     #[inline]
1620     fn index(&self, index: ops::RangeToInclusive<usize>) -> &[T] {
1621         Index::index(&**self, index)
1622     }
1623 }
1624
1625 #[stable(feature = "rust1", since = "1.0.0")]
1626 impl<T> ops::IndexMut<ops::Range<usize>> for Vec<T> {
1627     #[inline]
1628     fn index_mut(&mut self, index: ops::Range<usize>) -> &mut [T] {
1629         IndexMut::index_mut(&mut **self, index)
1630     }
1631 }
1632 #[stable(feature = "rust1", since = "1.0.0")]
1633 impl<T> ops::IndexMut<ops::RangeTo<usize>> for Vec<T> {
1634     #[inline]
1635     fn index_mut(&mut self, index: ops::RangeTo<usize>) -> &mut [T] {
1636         IndexMut::index_mut(&mut **self, index)
1637     }
1638 }
1639 #[stable(feature = "rust1", since = "1.0.0")]
1640 impl<T> ops::IndexMut<ops::RangeFrom<usize>> for Vec<T> {
1641     #[inline]
1642     fn index_mut(&mut self, index: ops::RangeFrom<usize>) -> &mut [T] {
1643         IndexMut::index_mut(&mut **self, index)
1644     }
1645 }
1646 #[stable(feature = "rust1", since = "1.0.0")]
1647 impl<T> ops::IndexMut<ops::RangeFull> for Vec<T> {
1648     #[inline]
1649     fn index_mut(&mut self, _index: ops::RangeFull) -> &mut [T] {
1650         self
1651     }
1652 }
1653 #[unstable(feature = "inclusive_range", reason = "recently added, follows RFC", issue = "28237")]
1654 impl<T> ops::IndexMut<ops::RangeInclusive<usize>> for Vec<T> {
1655     #[inline]
1656     fn index_mut(&mut self, index: ops::RangeInclusive<usize>) -> &mut [T] {
1657         IndexMut::index_mut(&mut **self, index)
1658     }
1659 }
1660 #[unstable(feature = "inclusive_range", reason = "recently added, follows RFC", issue = "28237")]
1661 impl<T> ops::IndexMut<ops::RangeToInclusive<usize>> for Vec<T> {
1662     #[inline]
1663     fn index_mut(&mut self, index: ops::RangeToInclusive<usize>) -> &mut [T] {
1664         IndexMut::index_mut(&mut **self, index)
1665     }
1666 }
1667
1668 #[stable(feature = "rust1", since = "1.0.0")]
1669 impl<T> ops::Deref for Vec<T> {
1670     type Target = [T];
1671
1672     fn deref(&self) -> &[T] {
1673         unsafe {
1674             let p = self.buf.ptr();
1675             assume(!p.is_null());
1676             slice::from_raw_parts(p, self.len)
1677         }
1678     }
1679 }
1680
1681 #[stable(feature = "rust1", since = "1.0.0")]
1682 impl<T> ops::DerefMut for Vec<T> {
1683     fn deref_mut(&mut self) -> &mut [T] {
1684         unsafe {
1685             let ptr = self.buf.ptr();
1686             assume(!ptr.is_null());
1687             slice::from_raw_parts_mut(ptr, self.len)
1688         }
1689     }
1690 }
1691
1692 #[stable(feature = "rust1", since = "1.0.0")]
1693 impl<T> FromIterator<T> for Vec<T> {
1694     #[inline]
1695     fn from_iter<I: IntoIterator<Item = T>>(iter: I) -> Vec<T> {
1696         <Self as SpecExtend<T, I::IntoIter>>::from_iter(iter.into_iter())
1697     }
1698 }
1699
1700 #[stable(feature = "rust1", since = "1.0.0")]
1701 impl<T> IntoIterator for Vec<T> {
1702     type Item = T;
1703     type IntoIter = IntoIter<T>;
1704
1705     /// Creates a consuming iterator, that is, one that moves each value out of
1706     /// the vector (from start to end). The vector cannot be used after calling
1707     /// this.
1708     ///
1709     /// # Examples
1710     ///
1711     /// ```
1712     /// let v = vec!["a".to_string(), "b".to_string()];
1713     /// for s in v.into_iter() {
1714     ///     // s has type String, not &String
1715     ///     println!("{}", s);
1716     /// }
1717     /// ```
1718     #[inline]
1719     fn into_iter(mut self) -> IntoIter<T> {
1720         unsafe {
1721             let begin = self.as_mut_ptr();
1722             assume(!begin.is_null());
1723             let end = if mem::size_of::<T>() == 0 {
1724                 arith_offset(begin as *const i8, self.len() as isize) as *const T
1725             } else {
1726                 begin.offset(self.len() as isize) as *const T
1727             };
1728             let cap = self.buf.cap();
1729             mem::forget(self);
1730             IntoIter {
1731                 buf: Shared::new_unchecked(begin),
1732                 cap,
1733                 ptr: begin,
1734                 end,
1735             }
1736         }
1737     }
1738 }
1739
1740 #[stable(feature = "rust1", since = "1.0.0")]
1741 impl<'a, T> IntoIterator for &'a Vec<T> {
1742     type Item = &'a T;
1743     type IntoIter = slice::Iter<'a, T>;
1744
1745     fn into_iter(self) -> slice::Iter<'a, T> {
1746         self.iter()
1747     }
1748 }
1749
1750 #[stable(feature = "rust1", since = "1.0.0")]
1751 impl<'a, T> IntoIterator for &'a mut Vec<T> {
1752     type Item = &'a mut T;
1753     type IntoIter = slice::IterMut<'a, T>;
1754
1755     fn into_iter(self) -> slice::IterMut<'a, T> {
1756         self.iter_mut()
1757     }
1758 }
1759
1760 #[stable(feature = "rust1", since = "1.0.0")]
1761 impl<T> Extend<T> for Vec<T> {
1762     #[inline]
1763     fn extend<I: IntoIterator<Item = T>>(&mut self, iter: I) {
1764         <Self as SpecExtend<T, I::IntoIter>>::spec_extend(self, iter.into_iter())
1765     }
1766 }
1767
1768 // Specialization trait used for Vec::from_iter and Vec::extend
1769 trait SpecExtend<T, I> {
1770     fn from_iter(iter: I) -> Self;
1771     fn spec_extend(&mut self, iter: I);
1772 }
1773
1774 impl<T, I> SpecExtend<T, I> for Vec<T>
1775     where I: Iterator<Item=T>,
1776 {
1777     default fn from_iter(mut iterator: I) -> Self {
1778         // Unroll the first iteration, as the vector is going to be
1779         // expanded on this iteration in every case when the iterable is not
1780         // empty, but the loop in extend_desugared() is not going to see the
1781         // vector being full in the few subsequent loop iterations.
1782         // So we get better branch prediction.
1783         let mut vector = match iterator.next() {
1784             None => return Vec::new(),
1785             Some(element) => {
1786                 let (lower, _) = iterator.size_hint();
1787                 let mut vector = Vec::with_capacity(lower.saturating_add(1));
1788                 unsafe {
1789                     ptr::write(vector.get_unchecked_mut(0), element);
1790                     vector.set_len(1);
1791                 }
1792                 vector
1793             }
1794         };
1795         <Vec<T> as SpecExtend<T, I>>::spec_extend(&mut vector, iterator);
1796         vector
1797     }
1798
1799     default fn spec_extend(&mut self, iter: I) {
1800         self.extend_desugared(iter)
1801     }
1802 }
1803
1804 impl<T, I> SpecExtend<T, I> for Vec<T>
1805     where I: TrustedLen<Item=T>,
1806 {
1807     default fn from_iter(iterator: I) -> Self {
1808         let mut vector = Vec::new();
1809         vector.spec_extend(iterator);
1810         vector
1811     }
1812
1813     default fn spec_extend(&mut self, iterator: I) {
1814         // This is the case for a TrustedLen iterator.
1815         let (low, high) = iterator.size_hint();
1816         if let Some(high_value) = high {
1817             debug_assert_eq!(low, high_value,
1818                              "TrustedLen iterator's size hint is not exact: {:?}",
1819                              (low, high));
1820         }
1821         if let Some(additional) = high {
1822             self.reserve(additional);
1823             unsafe {
1824                 let mut ptr = self.as_mut_ptr().offset(self.len() as isize);
1825                 let mut local_len = SetLenOnDrop::new(&mut self.len);
1826                 for element in iterator {
1827                     ptr::write(ptr, element);
1828                     ptr = ptr.offset(1);
1829                     // NB can't overflow since we would have had to alloc the address space
1830                     local_len.increment_len(1);
1831                 }
1832             }
1833         } else {
1834             self.extend_desugared(iterator)
1835         }
1836     }
1837 }
1838
1839 impl<T> SpecExtend<T, IntoIter<T>> for Vec<T> {
1840     fn from_iter(iterator: IntoIter<T>) -> Self {
1841         // A common case is passing a vector into a function which immediately
1842         // re-collects into a vector. We can short circuit this if the IntoIter
1843         // has not been advanced at all.
1844         if iterator.buf.as_ptr() as *const _ == iterator.ptr {
1845             unsafe {
1846                 let vec = Vec::from_raw_parts(iterator.buf.as_ptr(),
1847                                               iterator.len(),
1848                                               iterator.cap);
1849                 mem::forget(iterator);
1850                 vec
1851             }
1852         } else {
1853             let mut vector = Vec::new();
1854             vector.spec_extend(iterator);
1855             vector
1856         }
1857     }
1858
1859     fn spec_extend(&mut self, mut iterator: IntoIter<T>) {
1860         unsafe {
1861             self.append_elements(iterator.as_slice() as _);
1862         }
1863         iterator.ptr = iterator.end;
1864     }
1865 }
1866
1867 impl<'a, T: 'a, I> SpecExtend<&'a T, I> for Vec<T>
1868     where I: Iterator<Item=&'a T>,
1869           T: Clone,
1870 {
1871     default fn from_iter(iterator: I) -> Self {
1872         SpecExtend::from_iter(iterator.cloned())
1873     }
1874
1875     default fn spec_extend(&mut self, iterator: I) {
1876         self.spec_extend(iterator.cloned())
1877     }
1878 }
1879
1880 impl<'a, T: 'a> SpecExtend<&'a T, slice::Iter<'a, T>> for Vec<T>
1881     where T: Copy,
1882 {
1883     fn spec_extend(&mut self, iterator: slice::Iter<'a, T>) {
1884         let slice = iterator.as_slice();
1885         self.reserve(slice.len());
1886         unsafe {
1887             let len = self.len();
1888             self.set_len(len + slice.len());
1889             self.get_unchecked_mut(len..).copy_from_slice(slice);
1890         }
1891     }
1892 }
1893
1894 impl<T> Vec<T> {
1895     fn extend_desugared<I: Iterator<Item = T>>(&mut self, mut iterator: I) {
1896         // This is the case for a general iterator.
1897         //
1898         // This function should be the moral equivalent of:
1899         //
1900         //      for item in iterator {
1901         //          self.push(item);
1902         //      }
1903         while let Some(element) = iterator.next() {
1904             let len = self.len();
1905             if len == self.capacity() {
1906                 let (lower, _) = iterator.size_hint();
1907                 self.reserve(lower.saturating_add(1));
1908             }
1909             unsafe {
1910                 ptr::write(self.get_unchecked_mut(len), element);
1911                 // NB can't overflow since we would have had to alloc the address space
1912                 self.set_len(len + 1);
1913             }
1914         }
1915     }
1916
1917     /// Creates a splicing iterator that replaces the specified range in the vector
1918     /// with the given `replace_with` iterator and yields the removed items.
1919     /// `replace_with` does not need to be the same length as `range`.
1920     ///
1921     /// Note 1: The element range is removed even if the iterator is not
1922     /// consumed until the end.
1923     ///
1924     /// Note 2: It is unspecified how many elements are removed from the vector,
1925     /// if the `Splice` value is leaked.
1926     ///
1927     /// Note 3: The input iterator `replace_with` is only consumed
1928     /// when the `Splice` value is dropped.
1929     ///
1930     /// Note 4: This is optimal if:
1931     ///
1932     /// * The tail (elements in the vector after `range`) is empty,
1933     /// * or `replace_with` yields fewer elements than `range`’s length
1934     /// * or the lower bound of its `size_hint()` is exact.
1935     ///
1936     /// Otherwise, a temporary vector is allocated and the tail is moved twice.
1937     ///
1938     /// # Panics
1939     ///
1940     /// Panics if the starting point is greater than the end point or if
1941     /// the end point is greater than the length of the vector.
1942     ///
1943     /// # Examples
1944     ///
1945     /// ```
1946     /// #![feature(splice)]
1947     /// let mut v = vec![1, 2, 3];
1948     /// let new = [7, 8];
1949     /// let u: Vec<_> = v.splice(..2, new.iter().cloned()).collect();
1950     /// assert_eq!(v, &[7, 8, 3]);
1951     /// assert_eq!(u, &[1, 2]);
1952     /// ```
1953     #[inline]
1954     #[unstable(feature = "splice", reason = "recently added", issue = "32310")]
1955     pub fn splice<R, I>(&mut self, range: R, replace_with: I) -> Splice<I::IntoIter>
1956         where R: RangeArgument<usize>, I: IntoIterator<Item=T>
1957     {
1958         Splice {
1959             drain: self.drain(range),
1960             replace_with: replace_with.into_iter(),
1961         }
1962     }
1963
1964     /// Creates an iterator which uses a closure to determine if an element should be removed.
1965     ///
1966     /// If the closure returns true, then the element is removed and yielded.
1967     /// If the closure returns false, it will try again, and call the closure
1968     /// on the next element, seeing if it passes the test.
1969     ///
1970     /// Using this method is equivalent to the following code:
1971     ///
1972     /// ```
1973     /// # let some_predicate = |x: &mut i32| { *x == 2 || *x == 3 || *x == 6 };
1974     /// # let mut vec = vec![1, 2, 3, 4, 5, 6];
1975     /// let mut i = 0;
1976     /// while i != vec.len() {
1977     ///     if some_predicate(&mut vec[i]) {
1978     ///         let val = vec.remove(i);
1979     ///         // your code here
1980     ///     } else {
1981     ///         i += 1;
1982     ///     }
1983     /// }
1984     ///
1985     /// # assert_eq!(vec, vec![1, 4, 5]);
1986     /// ```
1987     ///
1988     /// But `drain_filter` is easier to use. `drain_filter` is also more efficient,
1989     /// because it can backshift the elements of the array in bulk.
1990     ///
1991     /// Note that `drain_filter` also lets you mutate every element in the filter closure,
1992     /// regardless of whether you choose to keep or remove it.
1993     ///
1994     ///
1995     /// # Examples
1996     ///
1997     /// Splitting an array into evens and odds, reusing the original allocation:
1998     ///
1999     /// ```
2000     /// #![feature(drain_filter)]
2001     /// let mut numbers = vec![1, 2, 3, 4, 5, 6, 8, 9, 11, 13, 14, 15];
2002     ///
2003     /// let evens = numbers.drain_filter(|x| *x % 2 == 0).collect::<Vec<_>>();
2004     /// let odds = numbers;
2005     ///
2006     /// assert_eq!(evens, vec![2, 4, 6, 8, 14]);
2007     /// assert_eq!(odds, vec![1, 3, 5, 9, 11, 13, 15]);
2008     /// ```
2009     #[unstable(feature = "drain_filter", reason = "recently added", issue = "43244")]
2010     pub fn drain_filter<F>(&mut self, filter: F) -> DrainFilter<T, F>
2011         where F: FnMut(&mut T) -> bool,
2012     {
2013         let old_len = self.len();
2014
2015         // Guard against us getting leaked (leak amplification)
2016         unsafe { self.set_len(0); }
2017
2018         DrainFilter {
2019             vec: self,
2020             idx: 0,
2021             del: 0,
2022             old_len,
2023             pred: filter,
2024         }
2025     }
2026 }
2027
2028 /// Extend implementation that copies elements out of references before pushing them onto the Vec.
2029 ///
2030 /// This implementation is specialized for slice iterators, where it uses [`copy_from_slice`] to
2031 /// append the entire slice at once.
2032 ///
2033 /// [`copy_from_slice`]: ../../std/primitive.slice.html#method.copy_from_slice
2034 #[stable(feature = "extend_ref", since = "1.2.0")]
2035 impl<'a, T: 'a + Copy> Extend<&'a T> for Vec<T> {
2036     fn extend<I: IntoIterator<Item = &'a T>>(&mut self, iter: I) {
2037         self.spec_extend(iter.into_iter())
2038     }
2039 }
2040
2041 macro_rules! __impl_slice_eq1 {
2042     ($Lhs: ty, $Rhs: ty) => {
2043         __impl_slice_eq1! { $Lhs, $Rhs, Sized }
2044     };
2045     ($Lhs: ty, $Rhs: ty, $Bound: ident) => {
2046         #[stable(feature = "rust1", since = "1.0.0")]
2047         impl<'a, 'b, A: $Bound, B> PartialEq<$Rhs> for $Lhs where A: PartialEq<B> {
2048             #[inline]
2049             fn eq(&self, other: &$Rhs) -> bool { self[..] == other[..] }
2050             #[inline]
2051             fn ne(&self, other: &$Rhs) -> bool { self[..] != other[..] }
2052         }
2053     }
2054 }
2055
2056 __impl_slice_eq1! { Vec<A>, Vec<B> }
2057 __impl_slice_eq1! { Vec<A>, &'b [B] }
2058 __impl_slice_eq1! { Vec<A>, &'b mut [B] }
2059 __impl_slice_eq1! { Cow<'a, [A]>, &'b [B], Clone }
2060 __impl_slice_eq1! { Cow<'a, [A]>, &'b mut [B], Clone }
2061 __impl_slice_eq1! { Cow<'a, [A]>, Vec<B>, Clone }
2062
2063 macro_rules! array_impls {
2064     ($($N: expr)+) => {
2065         $(
2066             // NOTE: some less important impls are omitted to reduce code bloat
2067             __impl_slice_eq1! { Vec<A>, [B; $N] }
2068             __impl_slice_eq1! { Vec<A>, &'b [B; $N] }
2069             // __impl_slice_eq1! { Vec<A>, &'b mut [B; $N] }
2070             // __impl_slice_eq1! { Cow<'a, [A]>, [B; $N], Clone }
2071             // __impl_slice_eq1! { Cow<'a, [A]>, &'b [B; $N], Clone }
2072             // __impl_slice_eq1! { Cow<'a, [A]>, &'b mut [B; $N], Clone }
2073         )+
2074     }
2075 }
2076
2077 array_impls! {
2078      0  1  2  3  4  5  6  7  8  9
2079     10 11 12 13 14 15 16 17 18 19
2080     20 21 22 23 24 25 26 27 28 29
2081     30 31 32
2082 }
2083
2084 /// Implements comparison of vectors, lexicographically.
2085 #[stable(feature = "rust1", since = "1.0.0")]
2086 impl<T: PartialOrd> PartialOrd for Vec<T> {
2087     #[inline]
2088     fn partial_cmp(&self, other: &Vec<T>) -> Option<Ordering> {
2089         PartialOrd::partial_cmp(&**self, &**other)
2090     }
2091 }
2092
2093 #[stable(feature = "rust1", since = "1.0.0")]
2094 impl<T: Eq> Eq for Vec<T> {}
2095
2096 /// Implements ordering of vectors, lexicographically.
2097 #[stable(feature = "rust1", since = "1.0.0")]
2098 impl<T: Ord> Ord for Vec<T> {
2099     #[inline]
2100     fn cmp(&self, other: &Vec<T>) -> Ordering {
2101         Ord::cmp(&**self, &**other)
2102     }
2103 }
2104
2105 #[stable(feature = "rust1", since = "1.0.0")]
2106 unsafe impl<#[may_dangle] T> Drop for Vec<T> {
2107     fn drop(&mut self) {
2108         unsafe {
2109             // use drop for [T]
2110             ptr::drop_in_place(&mut self[..]);
2111         }
2112         // RawVec handles deallocation
2113     }
2114 }
2115
2116 #[stable(feature = "rust1", since = "1.0.0")]
2117 impl<T> Default for Vec<T> {
2118     /// Creates an empty `Vec<T>`.
2119     fn default() -> Vec<T> {
2120         Vec::new()
2121     }
2122 }
2123
2124 #[stable(feature = "rust1", since = "1.0.0")]
2125 impl<T: fmt::Debug> fmt::Debug for Vec<T> {
2126     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
2127         fmt::Debug::fmt(&**self, f)
2128     }
2129 }
2130
2131 #[stable(feature = "rust1", since = "1.0.0")]
2132 impl<T> AsRef<Vec<T>> for Vec<T> {
2133     fn as_ref(&self) -> &Vec<T> {
2134         self
2135     }
2136 }
2137
2138 #[stable(feature = "vec_as_mut", since = "1.5.0")]
2139 impl<T> AsMut<Vec<T>> for Vec<T> {
2140     fn as_mut(&mut self) -> &mut Vec<T> {
2141         self
2142     }
2143 }
2144
2145 #[stable(feature = "rust1", since = "1.0.0")]
2146 impl<T> AsRef<[T]> for Vec<T> {
2147     fn as_ref(&self) -> &[T] {
2148         self
2149     }
2150 }
2151
2152 #[stable(feature = "vec_as_mut", since = "1.5.0")]
2153 impl<T> AsMut<[T]> for Vec<T> {
2154     fn as_mut(&mut self) -> &mut [T] {
2155         self
2156     }
2157 }
2158
2159 #[stable(feature = "rust1", since = "1.0.0")]
2160 impl<'a, T: Clone> From<&'a [T]> for Vec<T> {
2161     #[cfg(not(test))]
2162     fn from(s: &'a [T]) -> Vec<T> {
2163         s.to_vec()
2164     }
2165     #[cfg(test)]
2166     fn from(s: &'a [T]) -> Vec<T> {
2167         ::slice::to_vec(s)
2168     }
2169 }
2170
2171 #[stable(feature = "vec_from_mut", since = "1.19.0")]
2172 impl<'a, T: Clone> From<&'a mut [T]> for Vec<T> {
2173     #[cfg(not(test))]
2174     fn from(s: &'a mut [T]) -> Vec<T> {
2175         s.to_vec()
2176     }
2177     #[cfg(test)]
2178     fn from(s: &'a mut [T]) -> Vec<T> {
2179         ::slice::to_vec(s)
2180     }
2181 }
2182
2183 #[stable(feature = "vec_from_cow_slice", since = "1.14.0")]
2184 impl<'a, T> From<Cow<'a, [T]>> for Vec<T> where [T]: ToOwned<Owned=Vec<T>> {
2185     fn from(s: Cow<'a, [T]>) -> Vec<T> {
2186         s.into_owned()
2187     }
2188 }
2189
2190 // note: test pulls in libstd, which causes errors here
2191 #[cfg(not(test))]
2192 #[stable(feature = "vec_from_box", since = "1.18.0")]
2193 impl<T> From<Box<[T]>> for Vec<T> {
2194     fn from(s: Box<[T]>) -> Vec<T> {
2195         s.into_vec()
2196     }
2197 }
2198
2199 // note: test pulls in libstd, which causes errors here
2200 #[cfg(not(test))]
2201 #[stable(feature = "box_from_vec", since = "1.20.0")]
2202 impl<T> From<Vec<T>> for Box<[T]> {
2203     fn from(v: Vec<T>) -> Box<[T]> {
2204         v.into_boxed_slice()
2205     }
2206 }
2207
2208 #[stable(feature = "rust1", since = "1.0.0")]
2209 impl<'a> From<&'a str> for Vec<u8> {
2210     fn from(s: &'a str) -> Vec<u8> {
2211         From::from(s.as_bytes())
2212     }
2213 }
2214
2215 ////////////////////////////////////////////////////////////////////////////////
2216 // Clone-on-write
2217 ////////////////////////////////////////////////////////////////////////////////
2218
2219 #[stable(feature = "cow_from_vec", since = "1.8.0")]
2220 impl<'a, T: Clone> From<&'a [T]> for Cow<'a, [T]> {
2221     fn from(s: &'a [T]) -> Cow<'a, [T]> {
2222         Cow::Borrowed(s)
2223     }
2224 }
2225
2226 #[stable(feature = "cow_from_vec", since = "1.8.0")]
2227 impl<'a, T: Clone> From<Vec<T>> for Cow<'a, [T]> {
2228     fn from(v: Vec<T>) -> Cow<'a, [T]> {
2229         Cow::Owned(v)
2230     }
2231 }
2232
2233 #[stable(feature = "rust1", since = "1.0.0")]
2234 impl<'a, T> FromIterator<T> for Cow<'a, [T]> where T: Clone {
2235     fn from_iter<I: IntoIterator<Item = T>>(it: I) -> Cow<'a, [T]> {
2236         Cow::Owned(FromIterator::from_iter(it))
2237     }
2238 }
2239
2240 ////////////////////////////////////////////////////////////////////////////////
2241 // Iterators
2242 ////////////////////////////////////////////////////////////////////////////////
2243
2244 /// An iterator that moves out of a vector.
2245 ///
2246 /// This `struct` is created by the `into_iter` method on [`Vec`][`Vec`] (provided
2247 /// by the [`IntoIterator`] trait).
2248 ///
2249 /// [`Vec`]: struct.Vec.html
2250 /// [`IntoIterator`]: ../../std/iter/trait.IntoIterator.html
2251 #[stable(feature = "rust1", since = "1.0.0")]
2252 pub struct IntoIter<T> {
2253     buf: Shared<T>,
2254     cap: usize,
2255     ptr: *const T,
2256     end: *const T,
2257 }
2258
2259 #[stable(feature = "vec_intoiter_debug", since = "1.13.0")]
2260 impl<T: fmt::Debug> fmt::Debug for IntoIter<T> {
2261     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
2262         f.debug_tuple("IntoIter")
2263             .field(&self.as_slice())
2264             .finish()
2265     }
2266 }
2267
2268 impl<T> IntoIter<T> {
2269     /// Returns the remaining items of this iterator as a slice.
2270     ///
2271     /// # Examples
2272     ///
2273     /// ```
2274     /// let vec = vec!['a', 'b', 'c'];
2275     /// let mut into_iter = vec.into_iter();
2276     /// assert_eq!(into_iter.as_slice(), &['a', 'b', 'c']);
2277     /// let _ = into_iter.next().unwrap();
2278     /// assert_eq!(into_iter.as_slice(), &['b', 'c']);
2279     /// ```
2280     #[stable(feature = "vec_into_iter_as_slice", since = "1.15.0")]
2281     pub fn as_slice(&self) -> &[T] {
2282         unsafe {
2283             slice::from_raw_parts(self.ptr, self.len())
2284         }
2285     }
2286
2287     /// Returns the remaining items of this iterator as a mutable slice.
2288     ///
2289     /// # Examples
2290     ///
2291     /// ```
2292     /// let vec = vec!['a', 'b', 'c'];
2293     /// let mut into_iter = vec.into_iter();
2294     /// assert_eq!(into_iter.as_slice(), &['a', 'b', 'c']);
2295     /// into_iter.as_mut_slice()[2] = 'z';
2296     /// assert_eq!(into_iter.next().unwrap(), 'a');
2297     /// assert_eq!(into_iter.next().unwrap(), 'b');
2298     /// assert_eq!(into_iter.next().unwrap(), 'z');
2299     /// ```
2300     #[stable(feature = "vec_into_iter_as_slice", since = "1.15.0")]
2301     pub fn as_mut_slice(&mut self) -> &mut [T] {
2302         unsafe {
2303             slice::from_raw_parts_mut(self.ptr as *mut T, self.len())
2304         }
2305     }
2306 }
2307
2308 #[stable(feature = "rust1", since = "1.0.0")]
2309 unsafe impl<T: Send> Send for IntoIter<T> {}
2310 #[stable(feature = "rust1", since = "1.0.0")]
2311 unsafe impl<T: Sync> Sync for IntoIter<T> {}
2312
2313 #[stable(feature = "rust1", since = "1.0.0")]
2314 impl<T> Iterator for IntoIter<T> {
2315     type Item = T;
2316
2317     #[inline]
2318     fn next(&mut self) -> Option<T> {
2319         unsafe {
2320             if self.ptr as *const _ == self.end {
2321                 None
2322             } else {
2323                 if mem::size_of::<T>() == 0 {
2324                     // purposefully don't use 'ptr.offset' because for
2325                     // vectors with 0-size elements this would return the
2326                     // same pointer.
2327                     self.ptr = arith_offset(self.ptr as *const i8, 1) as *mut T;
2328
2329                     // Use a non-null pointer value
2330                     // (self.ptr might be null because of wrapping)
2331                     Some(ptr::read(1 as *mut T))
2332                 } else {
2333                     let old = self.ptr;
2334                     self.ptr = self.ptr.offset(1);
2335
2336                     Some(ptr::read(old))
2337                 }
2338             }
2339         }
2340     }
2341
2342     #[inline]
2343     fn size_hint(&self) -> (usize, Option<usize>) {
2344         let exact = match self.ptr.offset_to(self.end) {
2345             Some(x) => x as usize,
2346             None => (self.end as usize).wrapping_sub(self.ptr as usize),
2347         };
2348         (exact, Some(exact))
2349     }
2350
2351     #[inline]
2352     fn count(self) -> usize {
2353         self.len()
2354     }
2355 }
2356
2357 #[stable(feature = "rust1", since = "1.0.0")]
2358 impl<T> DoubleEndedIterator for IntoIter<T> {
2359     #[inline]
2360     fn next_back(&mut self) -> Option<T> {
2361         unsafe {
2362             if self.end == self.ptr {
2363                 None
2364             } else {
2365                 if mem::size_of::<T>() == 0 {
2366                     // See above for why 'ptr.offset' isn't used
2367                     self.end = arith_offset(self.end as *const i8, -1) as *mut T;
2368
2369                     // Use a non-null pointer value
2370                     // (self.end might be null because of wrapping)
2371                     Some(ptr::read(1 as *mut T))
2372                 } else {
2373                     self.end = self.end.offset(-1);
2374
2375                     Some(ptr::read(self.end))
2376                 }
2377             }
2378         }
2379     }
2380 }
2381
2382 #[stable(feature = "rust1", since = "1.0.0")]
2383 impl<T> ExactSizeIterator for IntoIter<T> {
2384     fn is_empty(&self) -> bool {
2385         self.ptr == self.end
2386     }
2387 }
2388
2389 #[unstable(feature = "fused", issue = "35602")]
2390 impl<T> FusedIterator for IntoIter<T> {}
2391
2392 #[unstable(feature = "trusted_len", issue = "37572")]
2393 unsafe impl<T> TrustedLen for IntoIter<T> {}
2394
2395 #[stable(feature = "vec_into_iter_clone", since = "1.8.0")]
2396 impl<T: Clone> Clone for IntoIter<T> {
2397     fn clone(&self) -> IntoIter<T> {
2398         self.as_slice().to_owned().into_iter()
2399     }
2400 }
2401
2402 #[stable(feature = "rust1", since = "1.0.0")]
2403 unsafe impl<#[may_dangle] T> Drop for IntoIter<T> {
2404     fn drop(&mut self) {
2405         // destroy the remaining elements
2406         for _x in self.by_ref() {}
2407
2408         // RawVec handles deallocation
2409         let _ = unsafe { RawVec::from_raw_parts(self.buf.as_ptr(), self.cap) };
2410     }
2411 }
2412
2413 /// A draining iterator for `Vec<T>`.
2414 ///
2415 /// This `struct` is created by the [`drain`] method on [`Vec`].
2416 ///
2417 /// [`drain`]: struct.Vec.html#method.drain
2418 /// [`Vec`]: struct.Vec.html
2419 #[stable(feature = "drain", since = "1.6.0")]
2420 pub struct Drain<'a, T: 'a> {
2421     /// Index of tail to preserve
2422     tail_start: usize,
2423     /// Length of tail
2424     tail_len: usize,
2425     /// Current remaining range to remove
2426     iter: slice::Iter<'a, T>,
2427     vec: Shared<Vec<T>>,
2428 }
2429
2430 #[stable(feature = "collection_debug", since = "1.17.0")]
2431 impl<'a, T: 'a + fmt::Debug> fmt::Debug for Drain<'a, T> {
2432     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
2433         f.debug_tuple("Drain")
2434          .field(&self.iter.as_slice())
2435          .finish()
2436     }
2437 }
2438
2439 #[stable(feature = "drain", since = "1.6.0")]
2440 unsafe impl<'a, T: Sync> Sync for Drain<'a, T> {}
2441 #[stable(feature = "drain", since = "1.6.0")]
2442 unsafe impl<'a, T: Send> Send for Drain<'a, T> {}
2443
2444 #[stable(feature = "drain", since = "1.6.0")]
2445 impl<'a, T> Iterator for Drain<'a, T> {
2446     type Item = T;
2447
2448     #[inline]
2449     fn next(&mut self) -> Option<T> {
2450         self.iter.next().map(|elt| unsafe { ptr::read(elt as *const _) })
2451     }
2452
2453     fn size_hint(&self) -> (usize, Option<usize>) {
2454         self.iter.size_hint()
2455     }
2456 }
2457
2458 #[stable(feature = "drain", since = "1.6.0")]
2459 impl<'a, T> DoubleEndedIterator for Drain<'a, T> {
2460     #[inline]
2461     fn next_back(&mut self) -> Option<T> {
2462         self.iter.next_back().map(|elt| unsafe { ptr::read(elt as *const _) })
2463     }
2464 }
2465
2466 #[stable(feature = "drain", since = "1.6.0")]
2467 impl<'a, T> Drop for Drain<'a, T> {
2468     fn drop(&mut self) {
2469         // exhaust self first
2470         while let Some(_) = self.next() {}
2471
2472         if self.tail_len > 0 {
2473             unsafe {
2474                 let source_vec = self.vec.as_mut();
2475                 // memmove back untouched tail, update to new length
2476                 let start = source_vec.len();
2477                 let tail = self.tail_start;
2478                 let src = source_vec.as_ptr().offset(tail as isize);
2479                 let dst = source_vec.as_mut_ptr().offset(start as isize);
2480                 ptr::copy(src, dst, self.tail_len);
2481                 source_vec.set_len(start + self.tail_len);
2482             }
2483         }
2484     }
2485 }
2486
2487
2488 #[stable(feature = "drain", since = "1.6.0")]
2489 impl<'a, T> ExactSizeIterator for Drain<'a, T> {
2490     fn is_empty(&self) -> bool {
2491         self.iter.is_empty()
2492     }
2493 }
2494
2495 #[unstable(feature = "fused", issue = "35602")]
2496 impl<'a, T> FusedIterator for Drain<'a, T> {}
2497
2498 /// A place for insertion at the back of a `Vec`.
2499 ///
2500 /// See [`Vec::place_back`](struct.Vec.html#method.place_back) for details.
2501 #[must_use = "places do nothing unless written to with `<-` syntax"]
2502 #[unstable(feature = "collection_placement",
2503            reason = "struct name and placement protocol are subject to change",
2504            issue = "30172")]
2505 #[derive(Debug)]
2506 pub struct PlaceBack<'a, T: 'a> {
2507     vec: &'a mut Vec<T>,
2508 }
2509
2510 #[unstable(feature = "collection_placement",
2511            reason = "placement protocol is subject to change",
2512            issue = "30172")]
2513 impl<'a, T> Placer<T> for PlaceBack<'a, T> {
2514     type Place = PlaceBack<'a, T>;
2515
2516     fn make_place(self) -> Self {
2517         // This will panic or abort if we would allocate > isize::MAX bytes
2518         // or if the length increment would overflow for zero-sized types.
2519         if self.vec.len == self.vec.buf.cap() {
2520             self.vec.buf.double();
2521         }
2522         self
2523     }
2524 }
2525
2526 #[unstable(feature = "collection_placement",
2527            reason = "placement protocol is subject to change",
2528            issue = "30172")]
2529 impl<'a, T> Place<T> for PlaceBack<'a, T> {
2530     fn pointer(&mut self) -> *mut T {
2531         unsafe { self.vec.as_mut_ptr().offset(self.vec.len as isize) }
2532     }
2533 }
2534
2535 #[unstable(feature = "collection_placement",
2536            reason = "placement protocol is subject to change",
2537            issue = "30172")]
2538 impl<'a, T> InPlace<T> for PlaceBack<'a, T> {
2539     type Owner = &'a mut T;
2540
2541     unsafe fn finalize(mut self) -> &'a mut T {
2542         let ptr = self.pointer();
2543         self.vec.len += 1;
2544         &mut *ptr
2545     }
2546 }
2547
2548
2549 /// A splicing iterator for `Vec`.
2550 ///
2551 /// This struct is created by the [`splice()`] method on [`Vec`]. See its
2552 /// documentation for more.
2553 ///
2554 /// [`splice()`]: struct.Vec.html#method.splice
2555 /// [`Vec`]: struct.Vec.html
2556 #[derive(Debug)]
2557 #[unstable(feature = "splice", reason = "recently added", issue = "32310")]
2558 pub struct Splice<'a, I: Iterator + 'a> {
2559     drain: Drain<'a, I::Item>,
2560     replace_with: I,
2561 }
2562
2563 #[unstable(feature = "splice", reason = "recently added", issue = "32310")]
2564 impl<'a, I: Iterator> Iterator for Splice<'a, I> {
2565     type Item = I::Item;
2566
2567     fn next(&mut self) -> Option<Self::Item> {
2568         self.drain.next()
2569     }
2570
2571     fn size_hint(&self) -> (usize, Option<usize>) {
2572         self.drain.size_hint()
2573     }
2574 }
2575
2576 #[unstable(feature = "splice", reason = "recently added", issue = "32310")]
2577 impl<'a, I: Iterator> DoubleEndedIterator for Splice<'a, I> {
2578     fn next_back(&mut self) -> Option<Self::Item> {
2579         self.drain.next_back()
2580     }
2581 }
2582
2583 #[unstable(feature = "splice", reason = "recently added", issue = "32310")]
2584 impl<'a, I: Iterator> ExactSizeIterator for Splice<'a, I> {}
2585
2586
2587 #[unstable(feature = "splice", reason = "recently added", issue = "32310")]
2588 impl<'a, I: Iterator> Drop for Splice<'a, I> {
2589     fn drop(&mut self) {
2590         // exhaust drain first
2591         while let Some(_) = self.drain.next() {}
2592
2593
2594         unsafe {
2595             if self.drain.tail_len == 0 {
2596                 self.drain.vec.as_mut().extend(self.replace_with.by_ref());
2597                 return
2598             }
2599
2600             // First fill the range left by drain().
2601             if !self.drain.fill(&mut self.replace_with) {
2602                 return
2603             }
2604
2605             // There may be more elements. Use the lower bound as an estimate.
2606             // FIXME: Is the upper bound a better guess? Or something else?
2607             let (lower_bound, _upper_bound) = self.replace_with.size_hint();
2608             if lower_bound > 0  {
2609                 self.drain.move_tail(lower_bound);
2610                 if !self.drain.fill(&mut self.replace_with) {
2611                     return
2612                 }
2613             }
2614
2615             // Collect any remaining elements.
2616             // This is a zero-length vector which does not allocate if `lower_bound` was exact.
2617             let mut collected = self.replace_with.by_ref().collect::<Vec<I::Item>>().into_iter();
2618             // Now we have an exact count.
2619             if collected.len() > 0 {
2620                 self.drain.move_tail(collected.len());
2621                 let filled = self.drain.fill(&mut collected);
2622                 debug_assert!(filled);
2623                 debug_assert_eq!(collected.len(), 0);
2624             }
2625         }
2626         // Let `Drain::drop` move the tail back if necessary and restore `vec.len`.
2627     }
2628 }
2629
2630 /// Private helper methods for `Splice::drop`
2631 impl<'a, T> Drain<'a, T> {
2632     /// The range from `self.vec.len` to `self.tail_start` contains elements
2633     /// that have been moved out.
2634     /// Fill that range as much as possible with new elements from the `replace_with` iterator.
2635     /// Return whether we filled the entire range. (`replace_with.next()` didn’t return `None`.)
2636     unsafe fn fill<I: Iterator<Item=T>>(&mut self, replace_with: &mut I) -> bool {
2637         let vec = self.vec.as_mut();
2638         let range_start = vec.len;
2639         let range_end = self.tail_start;
2640         let range_slice = slice::from_raw_parts_mut(
2641             vec.as_mut_ptr().offset(range_start as isize),
2642             range_end - range_start);
2643
2644         for place in range_slice {
2645             if let Some(new_item) = replace_with.next() {
2646                 ptr::write(place, new_item);
2647                 vec.len += 1;
2648             } else {
2649                 return false
2650             }
2651         }
2652         true
2653     }
2654
2655     /// Make room for inserting more elements before the tail.
2656     unsafe fn move_tail(&mut self, extra_capacity: usize) {
2657         let vec = self.vec.as_mut();
2658         let used_capacity = self.tail_start + self.tail_len;
2659         vec.buf.reserve(used_capacity, extra_capacity);
2660
2661         let new_tail_start = self.tail_start + extra_capacity;
2662         let src = vec.as_ptr().offset(self.tail_start as isize);
2663         let dst = vec.as_mut_ptr().offset(new_tail_start as isize);
2664         ptr::copy(src, dst, self.tail_len);
2665         self.tail_start = new_tail_start;
2666     }
2667 }
2668
2669 /// An iterator produced by calling `drain_filter` on Vec.
2670 #[unstable(feature = "drain_filter", reason = "recently added", issue = "43244")]
2671 #[derive(Debug)]
2672 pub struct DrainFilter<'a, T: 'a, F>
2673     where F: FnMut(&mut T) -> bool,
2674 {
2675     vec: &'a mut Vec<T>,
2676     idx: usize,
2677     del: usize,
2678     old_len: usize,
2679     pred: F,
2680 }
2681
2682 #[unstable(feature = "drain_filter", reason = "recently added", issue = "43244")]
2683 impl<'a, T, F> Iterator for DrainFilter<'a, T, F>
2684     where F: FnMut(&mut T) -> bool,
2685 {
2686     type Item = T;
2687
2688     fn next(&mut self) -> Option<T> {
2689         unsafe {
2690             while self.idx != self.old_len {
2691                 let i = self.idx;
2692                 self.idx += 1;
2693                 let v = slice::from_raw_parts_mut(self.vec.as_mut_ptr(), self.old_len);
2694                 if (self.pred)(&mut v[i]) {
2695                     self.del += 1;
2696                     return Some(ptr::read(&v[i]));
2697                 } else if self.del > 0 {
2698                     v.swap(i - self.del, i);
2699                 }
2700             }
2701             None
2702         }
2703     }
2704
2705     fn size_hint(&self) -> (usize, Option<usize>) {
2706         (0, Some(self.old_len - self.idx))
2707     }
2708 }
2709
2710 #[unstable(feature = "drain_filter", reason = "recently added", issue = "43244")]
2711 impl<'a, T, F> Drop for DrainFilter<'a, T, F>
2712     where F: FnMut(&mut T) -> bool,
2713 {
2714     fn drop(&mut self) {
2715         for _ in self.by_ref() { }
2716
2717         unsafe {
2718             self.vec.set_len(self.old_len - self.del);
2719         }
2720     }
2721 }