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