slice.rs 64.3 KB
Newer Older
1
// Copyright 2012-2015 The Rust Project Developers. See the COPYRIGHT
2 3 4 5 6 7 8 9 10
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

11
//! A dynamically-sized view into a contiguous sequence, `[T]`.
P
P1start 已提交
12
//!
13 14
//! Slices are a view into a block of memory represented as a pointer and a
//! length.
P
P1start 已提交
15
//!
16
//! ```
P
P1start 已提交
17
//! // slicing a Vec
18 19
//! let vec = vec![1, 2, 3];
//! let int_slice = &vec[..];
P
P1start 已提交
20
//! // coercing an array to a slice
N
Nick Cameron 已提交
21
//! let str_slice: &[&str] = &["one", "two", "three"];
P
P1start 已提交
22 23 24
//! ```
//!
//! Slices are either mutable or shared. The shared slice type is `&[T]`,
25 26 27
//! while the mutable slice type is `&mut [T]`, where `T` represents the element
//! type. For example, you can mutate the block of memory that a mutable slice
//! points to:
P
P1start 已提交
28
//!
29 30
//! ```
//! let x = &mut [1, 2, 3];
P
P1start 已提交
31
//! x[1] = 7;
32
//! assert_eq!(x, &[1, 7, 3]);
P
P1start 已提交
33 34 35 36 37 38
//! ```
//!
//! Here are some of the things this module contains:
//!
//! ## Structs
//!
39
//! There are several structs that are useful for slices, such as [`Iter`], which
P
P1start 已提交
40 41
//! represents iteration over a slice.
//!
42
//! ## Trait Implementations
P
P1start 已提交
43 44 45 46
//!
//! There are several implementations of common traits for slices. Some examples
//! include:
//!
47 48 49
//! * [`Clone`]
//! * [`Eq`], [`Ord`] - for slices whose element type are [`Eq`] or [`Ord`].
//! * [`Hash`] - for slices whose element type is [`Hash`].
P
P1start 已提交
50 51 52
//!
//! ## Iteration
//!
53 54
//! The slices implement `IntoIterator`. The iterator yields references to the
//! slice elements.
P
P1start 已提交
55
//!
56 57 58 59
//! ```
//! let numbers = &[0, 1, 2];
//! for n in numbers {
//!     println!("{} is a number!", n);
P
P1start 已提交
60 61 62
//! }
//! ```
//!
63 64 65 66 67 68 69 70 71
//! The mutable slice yields mutable references to the elements:
//!
//! ```
//! let mut scores = [7, 8, 9];
//! for score in &mut scores[..] {
//!     *score += 1;
//! }
//! ```
//!
72 73 74
//! This iterator yields mutable references to the slice's elements, so while
//! the element type of the slice is `i32`, the element type of the iterator is
//! `&mut i32`.
75
//!
76
//! * [`.iter`] and [`.iter_mut`] are the explicit methods to return the default
77
//!   iterators.
78 79
//! * Further methods that return iterators are [`.split`], [`.splitn`],
//!   [`.chunks`], [`.windows`] and more.
80
//!
A
Alex Crichton 已提交
81
//! *[See also the slice primitive type](../../std/primitive.slice.html).*
82 83 84 85 86 87
//!
//! [`Clone`]: ../../std/clone/trait.Clone.html
//! [`Eq`]: ../../std/cmp/trait.Eq.html
//! [`Ord`]: ../../std/cmp/trait.Ord.html
//! [`Iter`]: struct.Iter.html
//! [`Hash`]: ../../std/hash/trait.Hash.html
88 89 90 91 92 93
//! [`.iter`]: ../../std/primitive.slice.html#method.iter
//! [`.iter_mut`]: ../../std/primitive.slice.html#method.iter_mut
//! [`.split`]: ../../std/primitive.slice.html#method.split
//! [`.splitn`]: ../../std/primitive.slice.html#method.splitn
//! [`.chunks`]: ../../std/primitive.slice.html#method.chunks
//! [`.windows`]: ../../std/primitive.slice.html#method.windows
B
Brian Anderson 已提交
94
#![stable(feature = "rust1", since = "1.0.0")]
95

96 97
// Many of the usings in this module are only used in the test configuration.
// It's cleaner to just turn off the unused_imports warning than to fix them.
A
Alex Crichton 已提交
98
#![cfg_attr(test, allow(unused_imports, dead_code))]
99

S
Stjepan Glavina 已提交
100
use core::cmp::Ordering::{self, Less};
101 102 103
use core::mem::size_of;
use core::mem;
use core::ptr;
A
Alex Crichton 已提交
104
use core::slice as core_slice;
105

A
Aaron Turon 已提交
106
use borrow::{Borrow, BorrowMut, ToOwned};
M
Murarth 已提交
107
use boxed::Box;
108
use vec::Vec;
109

110
#[stable(feature = "rust1", since = "1.0.0")]
111
pub use core::slice::{Chunks, Windows};
112
#[stable(feature = "rust1", since = "1.0.0")]
A
Alex Crichton 已提交
113
pub use core::slice::{Iter, IterMut};
114
#[stable(feature = "rust1", since = "1.0.0")]
115
pub use core::slice::{SplitMut, ChunksMut, Split};
116
#[stable(feature = "rust1", since = "1.0.0")]
A
Aaron Turon 已提交
117
pub use core::slice::{SplitN, RSplitN, SplitNMut, RSplitNMut};
118 119
#[unstable(feature = "slice_rsplit", issue = "41020")]
pub use core::slice::{RSplit, RSplitMut};
120
#[stable(feature = "rust1", since = "1.0.0")]
121
pub use core::slice::{from_raw_parts, from_raw_parts_mut};
122
#[unstable(feature = "from_ref", issue = "45703")]
123
pub use core::slice::{from_ref, from_ref_mut};
S
Steven Fackler 已提交
124 125
#[unstable(feature = "slice_get_slice", issue = "35729")]
pub use core::slice::SliceIndex;
126

A
Aaron Turon 已提交
127 128 129
////////////////////////////////////////////////////////////////////////////////
// Basic slice extension methods
////////////////////////////////////////////////////////////////////////////////
130

131 132
// HACK(japaric) needed for the implementation of `vec!` macro during testing
// NB see the hack module in this file for more details
133
#[cfg(test)]
134
pub use self::hack::into_vec;
135

136 137
// HACK(japaric) needed for the implementation of `Vec::clone` during testing
// NB see the hack module in this file for more details
138
#[cfg(test)]
139 140
pub use self::hack::to_vec;

A
Alex Crichton 已提交
141 142 143 144
// HACK(japaric): With cfg(test) `impl [T]` is not available, these three
// functions are actually methods that are in `impl [T]` but not in
// `core::slice::SliceExt` - we need to supply these functions for the
// `test_permutations` test
145
mod hack {
M
Murarth 已提交
146
    use boxed::Box;
147 148 149 150 151 152 153 154 155 156 157 158
    use core::mem;

    #[cfg(test)]
    use string::ToString;
    use vec::Vec;

    pub fn into_vec<T>(mut b: Box<[T]>) -> Vec<T> {
        unsafe {
            let xs = Vec::from_raw_parts(b.as_mut_ptr(), b.len(), b.len());
            mem::forget(b);
            xs
        }
159 160
    }

161
    #[inline]
N
Nick Cameron 已提交
162 163 164
    pub fn to_vec<T>(s: &[T]) -> Vec<T>
        where T: Clone
    {
165
        let mut vector = Vec::with_capacity(s.len());
166
        vector.extend_from_slice(s);
167 168
        vector
    }
169 170
}

J
Jorge Aparicio 已提交
171
#[lang = "slice"]
172
#[cfg(not(test))]
J
Jorge Aparicio 已提交
173
impl<T> [T] {
174
    /// Returns the number of elements in the slice.
J
Jorge Aparicio 已提交
175
    ///
L
lukaramu 已提交
176
    /// # Examples
J
Jorge Aparicio 已提交
177
    ///
178 179 180
    /// ```
    /// let a = [1, 2, 3];
    /// assert_eq!(a.len(), 3);
J
Jorge Aparicio 已提交
181 182 183
    /// ```
    #[stable(feature = "rust1", since = "1.0.0")]
    #[inline]
184 185
    pub fn len(&self) -> usize {
        core_slice::SliceExt::len(self)
J
Jorge Aparicio 已提交
186 187
    }

188
    /// Returns `true` if the slice has a length of 0.
J
Jorge Aparicio 已提交
189
    ///
L
lukaramu 已提交
190
    /// # Examples
J
Jorge Aparicio 已提交
191 192
    ///
    /// ```
193 194 195 196
    /// let a = [1, 2, 3];
    /// assert!(!a.is_empty());
    /// ```
    #[stable(feature = "rust1", since = "1.0.0")]
J
Jorge Aparicio 已提交
197
    #[inline]
198 199
    pub fn is_empty(&self) -> bool {
        core_slice::SliceExt::is_empty(self)
J
Jorge Aparicio 已提交
200 201
    }

202
    /// Returns the first element of the slice, or `None` if it is empty.
J
Jorge Aparicio 已提交
203 204 205 206
    ///
    /// # Examples
    ///
    /// ```
207 208 209 210 211
    /// let v = [10, 40, 30];
    /// assert_eq!(Some(&10), v.first());
    ///
    /// let w: &[i32] = &[];
    /// assert_eq!(None, w.first());
J
Jorge Aparicio 已提交
212 213 214
    /// ```
    #[stable(feature = "rust1", since = "1.0.0")]
    #[inline]
215 216
    pub fn first(&self) -> Option<&T> {
        core_slice::SliceExt::first(self)
J
Jorge Aparicio 已提交
217 218
    }

219
    /// Returns a mutable pointer to the first element of the slice, or `None` if it is empty.
G
Guillaume Gomez 已提交
220 221 222 223 224 225 226 227 228 229 230
    ///
    /// # Examples
    ///
    /// ```
    /// let x = &mut [0, 1, 2];
    ///
    /// if let Some(first) = x.first_mut() {
    ///     *first = 5;
    /// }
    /// assert_eq!(x, &[5, 1, 2]);
    /// ```
J
Jorge Aparicio 已提交
231 232
    #[stable(feature = "rust1", since = "1.0.0")]
    #[inline]
233 234
    pub fn first_mut(&mut self) -> Option<&mut T> {
        core_slice::SliceExt::first_mut(self)
J
Jorge Aparicio 已提交
235 236
    }

237
    /// Returns the first and all the rest of the elements of the slice, or `None` if it is empty.
G
Guillaume Gomez 已提交
238 239 240 241 242 243 244 245 246 247 248
    ///
    /// # Examples
    ///
    /// ```
    /// let x = &[0, 1, 2];
    ///
    /// if let Some((first, elements)) = x.split_first() {
    ///     assert_eq!(first, &0);
    ///     assert_eq!(elements, &[1, 2]);
    /// }
    /// ```
249
    #[stable(feature = "slice_splits", since = "1.5.0")]
S
Simonas Kazlauskas 已提交
250 251 252 253 254
    #[inline]
    pub fn split_first(&self) -> Option<(&T, &[T])> {
        core_slice::SliceExt::split_first(self)
    }

255
    /// Returns the first and all the rest of the elements of the slice, or `None` if it is empty.
G
Guillaume Gomez 已提交
256 257 258 259 260 261 262 263 264 265 266 267 268
    ///
    /// # Examples
    ///
    /// ```
    /// let x = &mut [0, 1, 2];
    ///
    /// if let Some((first, elements)) = x.split_first_mut() {
    ///     *first = 3;
    ///     elements[0] = 4;
    ///     elements[1] = 5;
    /// }
    /// assert_eq!(x, &[3, 4, 5]);
    /// ```
269
    #[stable(feature = "slice_splits", since = "1.5.0")]
S
Simonas Kazlauskas 已提交
270 271 272 273 274
    #[inline]
    pub fn split_first_mut(&mut self) -> Option<(&mut T, &mut [T])> {
        core_slice::SliceExt::split_first_mut(self)
    }

275
    /// Returns the last and all the rest of the elements of the slice, or `None` if it is empty.
G
Guillaume Gomez 已提交
276 277 278 279 280 281 282 283 284 285 286
    ///
    /// # Examples
    ///
    /// ```
    /// let x = &[0, 1, 2];
    ///
    /// if let Some((last, elements)) = x.split_last() {
    ///     assert_eq!(last, &2);
    ///     assert_eq!(elements, &[0, 1]);
    /// }
    /// ```
287
    #[stable(feature = "slice_splits", since = "1.5.0")]
S
Simonas Kazlauskas 已提交
288 289 290 291 292 293
    #[inline]
    pub fn split_last(&self) -> Option<(&T, &[T])> {
        core_slice::SliceExt::split_last(self)

    }

294
    /// Returns the last and all the rest of the elements of the slice, or `None` if it is empty.
G
Guillaume Gomez 已提交
295 296 297 298 299 300 301 302 303 304 305 306 307
    ///
    /// # Examples
    ///
    /// ```
    /// let x = &mut [0, 1, 2];
    ///
    /// if let Some((last, elements)) = x.split_last_mut() {
    ///     *last = 3;
    ///     elements[0] = 4;
    ///     elements[1] = 5;
    /// }
    /// assert_eq!(x, &[4, 5, 3]);
    /// ```
308
    #[stable(feature = "slice_splits", since = "1.5.0")]
S
Simonas Kazlauskas 已提交
309 310 311 312 313
    #[inline]
    pub fn split_last_mut(&mut self) -> Option<(&mut T, &mut [T])> {
        core_slice::SliceExt::split_last_mut(self)
    }

314
    /// Returns the last element of the slice, or `None` if it is empty.
J
Jorge Aparicio 已提交
315
    ///
316
    /// # Examples
J
Jorge Aparicio 已提交
317
    ///
318 319 320
    /// ```
    /// let v = [10, 40, 30];
    /// assert_eq!(Some(&30), v.last());
J
Jorge Aparicio 已提交
321
    ///
322 323
    /// let w: &[i32] = &[];
    /// assert_eq!(None, w.last());
J
Jorge Aparicio 已提交
324 325 326
    /// ```
    #[stable(feature = "rust1", since = "1.0.0")]
    #[inline]
327 328
    pub fn last(&self) -> Option<&T> {
        core_slice::SliceExt::last(self)
J
Jorge Aparicio 已提交
329 330
    }

331
    /// Returns a mutable pointer to the last item in the slice.
G
Guillaume Gomez 已提交
332 333 334 335 336 337 338 339 340 341 342
    ///
    /// # Examples
    ///
    /// ```
    /// let x = &mut [0, 1, 2];
    ///
    /// if let Some(last) = x.last_mut() {
    ///     *last = 10;
    /// }
    /// assert_eq!(x, &[0, 1, 10]);
    /// ```
J
Jorge Aparicio 已提交
343 344
    #[stable(feature = "rust1", since = "1.0.0")]
    #[inline]
345 346
    pub fn last_mut(&mut self) -> Option<&mut T> {
        core_slice::SliceExt::last_mut(self)
J
Jorge Aparicio 已提交
347 348
    }

349 350 351 352 353 354 355
    /// Returns a reference to an element or subslice depending on the type of
    /// index.
    ///
    /// - If given a position, returns a reference to the element at that
    ///   position or `None` if out of bounds.
    /// - If given a range, returns the subslice corresponding to that range,
    ///   or `None` if out of bounds.
J
Jorge Aparicio 已提交
356 357 358 359 360 361
    ///
    /// # Examples
    ///
    /// ```
    /// let v = [10, 40, 30];
    /// assert_eq!(Some(&40), v.get(1));
362
    /// assert_eq!(Some(&[10, 40][..]), v.get(0..2));
J
Jorge Aparicio 已提交
363
    /// assert_eq!(None, v.get(3));
364
    /// assert_eq!(None, v.get(0..4));
J
Jorge Aparicio 已提交
365 366 367
    /// ```
    #[stable(feature = "rust1", since = "1.0.0")]
    #[inline]
S
Steven Fackler 已提交
368
    pub fn get<I>(&self, index: I) -> Option<&I::Output>
369
        where I: SliceIndex<Self>
S
Steven Fackler 已提交
370
    {
J
Jorge Aparicio 已提交
371 372 373
        core_slice::SliceExt::get(self, index)
    }

374
    /// Returns a mutable reference to an element or subslice depending on the
375
    /// type of index (see [`get`]) or `None` if the index is out of bounds.
376
    ///
377
    /// [`get`]: #method.get
G
Guillaume Gomez 已提交
378 379 380 381 382 383 384 385 386 387 388
    ///
    /// # Examples
    ///
    /// ```
    /// let x = &mut [0, 1, 2];
    ///
    /// if let Some(elem) = x.get_mut(1) {
    ///     *elem = 42;
    /// }
    /// assert_eq!(x, &[0, 42, 2]);
    /// ```
J
Jorge Aparicio 已提交
389 390
    #[stable(feature = "rust1", since = "1.0.0")]
    #[inline]
S
Steven Fackler 已提交
391
    pub fn get_mut<I>(&mut self, index: I) -> Option<&mut I::Output>
392
        where I: SliceIndex<Self>
S
Steven Fackler 已提交
393
    {
394
        core_slice::SliceExt::get_mut(self, index)
J
Jorge Aparicio 已提交
395 396
    }

397
    /// Returns a reference to an element or subslice, without doing bounds
398 399 400 401 402 403
    /// checking.
    ///
    /// This is generally not recommended, use with caution! For a safe
    /// alternative see [`get`].
    ///
    /// [`get`]: #method.get
G
Guillaume Gomez 已提交
404 405 406 407 408 409 410 411 412 413
    ///
    /// # Examples
    ///
    /// ```
    /// let x = &[1, 2, 4];
    ///
    /// unsafe {
    ///     assert_eq!(x.get_unchecked(1), &2);
    /// }
    /// ```
414
    #[stable(feature = "rust1", since = "1.0.0")]
J
Jorge Aparicio 已提交
415
    #[inline]
S
Steven Fackler 已提交
416
    pub unsafe fn get_unchecked<I>(&self, index: I) -> &I::Output
417
        where I: SliceIndex<Self>
S
Steven Fackler 已提交
418
    {
419
        core_slice::SliceExt::get_unchecked(self, index)
J
Jorge Aparicio 已提交
420 421
    }

422
    /// Returns a mutable reference to an element or subslice, without doing
423 424 425 426 427 428
    /// bounds checking.
    ///
    /// This is generally not recommended, use with caution! For a safe
    /// alternative see [`get_mut`].
    ///
    /// [`get_mut`]: #method.get_mut
G
Guillaume Gomez 已提交
429 430 431 432 433 434 435 436 437 438 439 440
    ///
    /// # Examples
    ///
    /// ```
    /// let x = &mut [1, 2, 4];
    ///
    /// unsafe {
    ///     let elem = x.get_unchecked_mut(1);
    ///     *elem = 13;
    /// }
    /// assert_eq!(x, &[1, 13, 4]);
    /// ```
441
    #[stable(feature = "rust1", since = "1.0.0")]
J
Jorge Aparicio 已提交
442
    #[inline]
S
Steven Fackler 已提交
443
    pub unsafe fn get_unchecked_mut<I>(&mut self, index: I) -> &mut I::Output
444
        where I: SliceIndex<Self>
S
Steven Fackler 已提交
445
    {
446
        core_slice::SliceExt::get_unchecked_mut(self, index)
J
Jorge Aparicio 已提交
447 448
    }

449
    /// Returns a raw pointer to the slice's buffer.
J
Jorge Aparicio 已提交
450
    ///
451 452
    /// The caller must ensure that the slice outlives the pointer this
    /// function returns, or else it will end up pointing to garbage.
J
Jorge Aparicio 已提交
453
    ///
454 455
    /// Modifying the container referenced by this slice may cause its buffer
    /// to be reallocated, which would also make any pointers to it invalid.
G
Guillaume Gomez 已提交
456 457 458 459 460 461 462 463 464 465 466 467 468
    ///
    /// # Examples
    ///
    /// ```
    /// let x = &[1, 2, 4];
    /// let x_ptr = x.as_ptr();
    ///
    /// unsafe {
    ///     for i in 0..x.len() {
    ///         assert_eq!(x.get_unchecked(i), &*x_ptr.offset(i as isize));
    ///     }
    /// }
    /// ```
J
Jorge Aparicio 已提交
469 470
    #[stable(feature = "rust1", since = "1.0.0")]
    #[inline]
471 472
    pub fn as_ptr(&self) -> *const T {
        core_slice::SliceExt::as_ptr(self)
J
Jorge Aparicio 已提交
473 474
    }

475
    /// Returns an unsafe mutable pointer to the slice's buffer.
J
Jorge Aparicio 已提交
476 477 478 479
    ///
    /// The caller must ensure that the slice outlives the pointer this
    /// function returns, or else it will end up pointing to garbage.
    ///
480 481
    /// Modifying the container referenced by this slice may cause its buffer
    /// to be reallocated, which would also make any pointers to it invalid.
G
Guillaume Gomez 已提交
482 483 484 485 486 487 488 489 490 491 492 493 494 495
    ///
    /// # Examples
    ///
    /// ```
    /// let x = &mut [1, 2, 4];
    /// let x_ptr = x.as_mut_ptr();
    ///
    /// unsafe {
    ///     for i in 0..x.len() {
    ///         *x_ptr.offset(i as isize) += 2;
    ///     }
    /// }
    /// assert_eq!(x, &[3, 4, 6]);
    /// ```
J
Jorge Aparicio 已提交
496 497
    #[stable(feature = "rust1", since = "1.0.0")]
    #[inline]
498 499
    pub fn as_mut_ptr(&mut self) -> *mut T {
        core_slice::SliceExt::as_mut_ptr(self)
J
Jorge Aparicio 已提交
500 501
    }

502
    /// Swaps two elements in the slice.
J
Jorge Aparicio 已提交
503
    ///
504
    /// # Arguments
J
Jorge Aparicio 已提交
505
    ///
506 507
    /// * a - The index of the first element
    /// * b - The index of the second element
J
Jorge Aparicio 已提交
508
    ///
509
    /// # Panics
J
Jorge Aparicio 已提交
510
    ///
511
    /// Panics if `a` or `b` are out of bounds.
J
Jorge Aparicio 已提交
512
    ///
G
Guillaume Gomez 已提交
513
    /// # Examples
J
Jorge Aparicio 已提交
514
    ///
515
    /// ```
516 517 518
    /// let mut v = ["a", "b", "c", "d"];
    /// v.swap(1, 3);
    /// assert!(v == ["a", "d", "c", "b"]);
J
Jorge Aparicio 已提交
519 520 521
    /// ```
    #[stable(feature = "rust1", since = "1.0.0")]
    #[inline]
522 523
    pub fn swap(&mut self, a: usize, b: usize) {
        core_slice::SliceExt::swap(self, a, b)
J
Jorge Aparicio 已提交
524 525
    }

526
    /// Reverses the order of elements in the slice, in place.
J
Jorge Aparicio 已提交
527
    ///
L
lukaramu 已提交
528
    /// # Examples
J
Jorge Aparicio 已提交
529
    ///
530
    /// ```
531 532 533
    /// let mut v = [1, 2, 3];
    /// v.reverse();
    /// assert!(v == [3, 2, 1]);
J
Jorge Aparicio 已提交
534 535 536
    /// ```
    #[stable(feature = "rust1", since = "1.0.0")]
    #[inline]
537 538
    pub fn reverse(&mut self) {
        core_slice::SliceExt::reverse(self)
J
Jorge Aparicio 已提交
539 540
    }

541
    /// Returns an iterator over the slice.
G
Guillaume Gomez 已提交
542 543 544 545 546 547 548 549 550 551 552 553
    ///
    /// # Examples
    ///
    /// ```
    /// let x = &[1, 2, 4];
    /// let mut iterator = x.iter();
    ///
    /// assert_eq!(iterator.next(), Some(&1));
    /// assert_eq!(iterator.next(), Some(&2));
    /// assert_eq!(iterator.next(), Some(&4));
    /// assert_eq!(iterator.next(), None);
    /// ```
554 555 556 557 558 559
    #[stable(feature = "rust1", since = "1.0.0")]
    #[inline]
    pub fn iter(&self) -> Iter<T> {
        core_slice::SliceExt::iter(self)
    }

G
Guillaume Gomez 已提交
560 561 562 563 564 565
    /// Returns an iterator that allows modifying each value.
    ///
    /// # Examples
    ///
    /// ```
    /// let x = &mut [1, 2, 4];
566 567
    /// for elem in x.iter_mut() {
    ///     *elem += 2;
G
Guillaume Gomez 已提交
568 569 570
    /// }
    /// assert_eq!(x, &[3, 4, 6]);
    /// ```
571 572 573 574 575 576 577 578 579 580 581 582 583
    #[stable(feature = "rust1", since = "1.0.0")]
    #[inline]
    pub fn iter_mut(&mut self) -> IterMut<T> {
        core_slice::SliceExt::iter_mut(self)
    }

    /// Returns an iterator over all contiguous windows of length
    /// `size`. The windows overlap. If the slice is shorter than
    /// `size`, the iterator returns no values.
    ///
    /// # Panics
    ///
    /// Panics if `size` is 0.
J
Jorge Aparicio 已提交
584
    ///
L
lukaramu 已提交
585
    /// # Examples
J
Jorge Aparicio 已提交
586
    ///
587 588 589 590 591 592 593 594
    /// ```
    /// let slice = ['r', 'u', 's', 't'];
    /// let mut iter = slice.windows(2);
    /// assert_eq!(iter.next().unwrap(), &['r', 'u']);
    /// assert_eq!(iter.next().unwrap(), &['u', 's']);
    /// assert_eq!(iter.next().unwrap(), &['s', 't']);
    /// assert!(iter.next().is_none());
    /// ```
595
    ///
596 597 598 599 600 601
    /// If the slice is shorter than `size`:
    ///
    /// ```
    /// let slice = ['f', 'o', 'o'];
    /// let mut iter = slice.windows(4);
    /// assert!(iter.next().is_none());
J
Jorge Aparicio 已提交
602 603 604
    /// ```
    #[stable(feature = "rust1", since = "1.0.0")]
    #[inline]
605 606
    pub fn windows(&self, size: usize) -> Windows<T> {
        core_slice::SliceExt::windows(self, size)
J
Jorge Aparicio 已提交
607 608
    }

609
    /// Returns an iterator over `size` elements of the slice at a
610 611 612
    /// time. The chunks are slices and do not overlap. If `size` does
    /// not divide the length of the slice, then the last chunk will
    /// not have length `size`.
613 614 615 616 617
    ///
    /// # Panics
    ///
    /// Panics if `size` is 0.
    ///
L
lukaramu 已提交
618
    /// # Examples
619
    ///
620 621 622 623 624 625 626
    /// ```
    /// let slice = ['l', 'o', 'r', 'e', 'm'];
    /// let mut iter = slice.chunks(2);
    /// assert_eq!(iter.next().unwrap(), &['l', 'o']);
    /// assert_eq!(iter.next().unwrap(), &['r', 'e']);
    /// assert_eq!(iter.next().unwrap(), &['m']);
    /// assert!(iter.next().is_none());
627
    /// ```
J
Jorge Aparicio 已提交
628 629
    #[stable(feature = "rust1", since = "1.0.0")]
    #[inline]
630 631
    pub fn chunks(&self, size: usize) -> Chunks<T> {
        core_slice::SliceExt::chunks(self, size)
J
Jorge Aparicio 已提交
632 633
    }

634 635
    /// Returns an iterator over `chunk_size` elements of the slice at a time.
    /// The chunks are mutable slices, and do not overlap. If `chunk_size` does
636 637 638 639 640 641
    /// not divide the length of the slice, then the last chunk will not
    /// have length `chunk_size`.
    ///
    /// # Panics
    ///
    /// Panics if `chunk_size` is 0.
G
Guillaume Gomez 已提交
642 643 644 645 646 647 648 649 650 651 652 653 654 655 656
    ///
    /// # Examples
    ///
    /// ```
    /// let v = &mut [0, 0, 0, 0, 0];
    /// let mut count = 1;
    ///
    /// for chunk in v.chunks_mut(2) {
    ///     for elem in chunk.iter_mut() {
    ///         *elem += count;
    ///     }
    ///     count += 1;
    /// }
    /// assert_eq!(v, &[1, 1, 2, 2, 3]);
    /// ```
J
Jorge Aparicio 已提交
657 658
    #[stable(feature = "rust1", since = "1.0.0")]
    #[inline]
659 660
    pub fn chunks_mut(&mut self, chunk_size: usize) -> ChunksMut<T> {
        core_slice::SliceExt::chunks_mut(self, chunk_size)
J
Jorge Aparicio 已提交
661 662
    }

663 664 665 666 667 668
    /// Divides one slice into two at an index.
    ///
    /// The first will contain all indices from `[0, mid)` (excluding
    /// the index `mid` itself) and the second will contain all
    /// indices from `[mid, len)` (excluding the index `len` itself).
    ///
S
Steve Klabnik 已提交
669 670
    /// # Panics
    ///
671 672 673 674 675
    /// Panics if `mid > len`.
    ///
    /// # Examples
    ///
    /// ```
676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694
    /// let v = [1, 2, 3, 4, 5, 6];
    ///
    /// {
    ///    let (left, right) = v.split_at(0);
    ///    assert!(left == []);
    ///    assert!(right == [1, 2, 3, 4, 5, 6]);
    /// }
    ///
    /// {
    ///     let (left, right) = v.split_at(2);
    ///     assert!(left == [1, 2]);
    ///     assert!(right == [3, 4, 5, 6]);
    /// }
    ///
    /// {
    ///     let (left, right) = v.split_at(6);
    ///     assert!(left == [1, 2, 3, 4, 5, 6]);
    ///     assert!(right == []);
    /// }
695
    /// ```
J
Jorge Aparicio 已提交
696 697
    #[stable(feature = "rust1", since = "1.0.0")]
    #[inline]
698 699
    pub fn split_at(&self, mid: usize) -> (&[T], &[T]) {
        core_slice::SliceExt::split_at(self, mid)
J
Jorge Aparicio 已提交
700 701
    }

702 703 704 705 706 707 708 709 710 711
    /// Divides one `&mut` into two at an index.
    ///
    /// The first will contain all indices from `[0, mid)` (excluding
    /// the index `mid` itself) and the second will contain all
    /// indices from `[mid, len)` (excluding the index `len` itself).
    ///
    /// # Panics
    ///
    /// Panics if `mid > len`.
    ///
G
Guillaume Gomez 已提交
712
    /// # Examples
713
    ///
714
    /// ```
715
    /// let mut v = [1, 0, 3, 0, 5, 6];
716 717 718
    /// // scoped to restrict the lifetime of the borrows
    /// {
    ///     let (left, right) = v.split_at_mut(2);
719 720 721 722
    ///     assert!(left == [1, 0]);
    ///     assert!(right == [3, 0, 5, 6]);
    ///     left[1] = 2;
    ///     right[1] = 4;
723
    /// }
724
    /// assert!(v == [1, 2, 3, 4, 5, 6]);
725 726
    /// ```
    #[stable(feature = "rust1", since = "1.0.0")]
J
Jorge Aparicio 已提交
727
    #[inline]
728 729
    pub fn split_at_mut(&mut self, mid: usize) -> (&mut [T], &mut [T]) {
        core_slice::SliceExt::split_at_mut(self, mid)
J
Jorge Aparicio 已提交
730 731
    }

732
    /// Returns an iterator over subslices separated by elements that match
G
Guillaume Gomez 已提交
733
    /// `pred`. The matched element is not contained in the subslices.
734 735 736
    ///
    /// # Examples
    ///
737 738 739
    /// ```
    /// let slice = [10, 40, 33, 20];
    /// let mut iter = slice.split(|num| num % 3 == 0);
740
    ///
741 742 743
    /// assert_eq!(iter.next().unwrap(), &[10, 40]);
    /// assert_eq!(iter.next().unwrap(), &[20]);
    /// assert!(iter.next().is_none());
744
    /// ```
G
Guillaume Gomez 已提交
745
    ///
746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770
    /// If the first element is matched, an empty slice will be the first item
    /// returned by the iterator. Similarly, if the last element in the slice
    /// is matched, an empty slice will be the last item returned by the
    /// iterator:
    ///
    /// ```
    /// let slice = [10, 40, 33];
    /// let mut iter = slice.split(|num| num % 3 == 0);
    ///
    /// assert_eq!(iter.next().unwrap(), &[10, 40]);
    /// assert_eq!(iter.next().unwrap(), &[]);
    /// assert!(iter.next().is_none());
    /// ```
    ///
    /// If two matched elements are directly adjacent, an empty slice will be
    /// present between them:
    ///
    /// ```
    /// let slice = [10, 6, 33, 20];
    /// let mut iter = slice.split(|num| num % 3 == 0);
    ///
    /// assert_eq!(iter.next().unwrap(), &[10]);
    /// assert_eq!(iter.next().unwrap(), &[]);
    /// assert_eq!(iter.next().unwrap(), &[20]);
    /// assert!(iter.next().is_none());
771
    /// ```
J
Jorge Aparicio 已提交
772 773
    #[stable(feature = "rust1", since = "1.0.0")]
    #[inline]
N
Nick Cameron 已提交
774 775 776
    pub fn split<F>(&self, pred: F) -> Split<T, F>
        where F: FnMut(&T) -> bool
    {
777
        core_slice::SliceExt::split(self, pred)
J
Jorge Aparicio 已提交
778 779 780
    }

    /// Returns an iterator over mutable subslices separated by elements that
G
Guillaume Gomez 已提交
781 782 783 784 785 786 787 788 789 790 791 792
    /// match `pred`. The matched element is not contained in the subslices.
    ///
    /// # Examples
    ///
    /// ```
    /// let mut v = [10, 40, 30, 20, 60, 50];
    ///
    /// for group in v.split_mut(|num| *num % 3 == 0) {
    ///     group[0] = 1;
    /// }
    /// assert_eq!(v, [1, 40, 30, 1, 60, 1]);
    /// ```
J
Jorge Aparicio 已提交
793 794
    #[stable(feature = "rust1", since = "1.0.0")]
    #[inline]
N
Nick Cameron 已提交
795 796 797
    pub fn split_mut<F>(&mut self, pred: F) -> SplitMut<T, F>
        where F: FnMut(&T) -> bool
    {
J
Jorge Aparicio 已提交
798 799 800
        core_slice::SliceExt::split_mut(self, pred)
    }

801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866
    /// Returns an iterator over subslices separated by elements that match
    /// `pred`, starting at the end of the slice and working backwards.
    /// The matched element is not contained in the subslices.
    ///
    /// # Examples
    ///
    /// ```
    /// #![feature(slice_rsplit)]
    ///
    /// let slice = [11, 22, 33, 0, 44, 55];
    /// let mut iter = slice.rsplit(|num| *num == 0);
    ///
    /// assert_eq!(iter.next().unwrap(), &[44, 55]);
    /// assert_eq!(iter.next().unwrap(), &[11, 22, 33]);
    /// assert_eq!(iter.next(), None);
    /// ```
    ///
    /// As with `split()`, if the first or last element is matched, an empty
    /// slice will be the first (or last) item returned by the iterator.
    ///
    /// ```
    /// #![feature(slice_rsplit)]
    ///
    /// let v = &[0, 1, 1, 2, 3, 5, 8];
    /// let mut it = v.rsplit(|n| *n % 2 == 0);
    /// assert_eq!(it.next().unwrap(), &[]);
    /// assert_eq!(it.next().unwrap(), &[3, 5]);
    /// assert_eq!(it.next().unwrap(), &[1, 1]);
    /// assert_eq!(it.next().unwrap(), &[]);
    /// assert_eq!(it.next(), None);
    /// ```
    #[unstable(feature = "slice_rsplit", issue = "41020")]
    #[inline]
    pub fn rsplit<F>(&self, pred: F) -> RSplit<T, F>
        where F: FnMut(&T) -> bool
    {
        core_slice::SliceExt::rsplit(self, pred)
    }

    /// Returns an iterator over mutable subslices separated by elements that
    /// match `pred`, starting at the end of the slice and working
    /// backwards. The matched element is not contained in the subslices.
    ///
    /// # Examples
    ///
    /// ```
    /// #![feature(slice_rsplit)]
    ///
    /// let mut v = [100, 400, 300, 200, 600, 500];
    ///
    /// let mut count = 0;
    /// for group in v.rsplit_mut(|num| *num % 3 == 0) {
    ///     count += 1;
    ///     group[0] = count;
    /// }
    /// assert_eq!(v, [3, 400, 300, 2, 600, 1]);
    /// ```
    ///
    #[unstable(feature = "slice_rsplit", issue = "41020")]
    #[inline]
    pub fn rsplit_mut<F>(&mut self, pred: F) -> RSplitMut<T, F>
        where F: FnMut(&T) -> bool
    {
        core_slice::SliceExt::rsplit_mut(self, pred)
    }

867
    /// Returns an iterator over subslices separated by elements that match
868
    /// `pred`, limited to returning at most `n` items. The matched element is
869 870 871 872 873 874 875 876 877 878 879 880
    /// not contained in the subslices.
    ///
    /// The last element returned, if any, will contain the remainder of the
    /// slice.
    ///
    /// # Examples
    ///
    /// Print the slice split once by numbers divisible by 3 (i.e. `[10, 40]`,
    /// `[20, 60, 50]`):
    ///
    /// ```
    /// let v = [10, 40, 30, 20, 60, 50];
G
Guillaume Gomez 已提交
881
    ///
882 883 884 885 886 887
    /// for group in v.splitn(2, |num| *num % 3 == 0) {
    ///     println!("{:?}", group);
    /// }
    /// ```
    #[stable(feature = "rust1", since = "1.0.0")]
    #[inline]
N
Nick Cameron 已提交
888 889 890
    pub fn splitn<F>(&self, n: usize, pred: F) -> SplitN<T, F>
        where F: FnMut(&T) -> bool
    {
891 892 893
        core_slice::SliceExt::splitn(self, n, pred)
    }

J
Jorge Aparicio 已提交
894
    /// Returns an iterator over subslices separated by elements that match
895
    /// `pred`, limited to returning at most `n` items. The matched element is
J
Jorge Aparicio 已提交
896
    /// not contained in the subslices.
897 898 899
    ///
    /// The last element returned, if any, will contain the remainder of the
    /// slice.
G
Guillaume Gomez 已提交
900 901 902 903 904 905 906 907 908 909 910
    ///
    /// # Examples
    ///
    /// ```
    /// let mut v = [10, 40, 30, 20, 60, 50];
    ///
    /// for group in v.splitn_mut(2, |num| *num % 3 == 0) {
    ///     group[0] = 1;
    /// }
    /// assert_eq!(v, [1, 40, 30, 1, 60, 50]);
    /// ```
J
Jorge Aparicio 已提交
911 912 913
    #[stable(feature = "rust1", since = "1.0.0")]
    #[inline]
    pub fn splitn_mut<F>(&mut self, n: usize, pred: F) -> SplitNMut<T, F>
N
Nick Cameron 已提交
914 915
        where F: FnMut(&T) -> bool
    {
J
Jorge Aparicio 已提交
916 917 918
        core_slice::SliceExt::splitn_mut(self, n, pred)
    }

919 920 921 922 923 924 925 926 927 928 929 930 931 932 933
    /// Returns an iterator over subslices separated by elements that match
    /// `pred` limited to returning at most `n` items. This starts at the end of
    /// the slice and works backwards.  The matched element is not contained in
    /// the subslices.
    ///
    /// The last element returned, if any, will contain the remainder of the
    /// slice.
    ///
    /// # Examples
    ///
    /// Print the slice split once, starting from the end, by numbers divisible
    /// by 3 (i.e. `[50]`, `[10, 40, 30, 20]`):
    ///
    /// ```
    /// let v = [10, 40, 30, 20, 60, 50];
G
Guillaume Gomez 已提交
934
    ///
935 936 937 938 939 940
    /// for group in v.rsplitn(2, |num| *num % 3 == 0) {
    ///     println!("{:?}", group);
    /// }
    /// ```
    #[stable(feature = "rust1", since = "1.0.0")]
    #[inline]
N
Nick Cameron 已提交
941 942 943
    pub fn rsplitn<F>(&self, n: usize, pred: F) -> RSplitN<T, F>
        where F: FnMut(&T) -> bool
    {
944 945 946
        core_slice::SliceExt::rsplitn(self, n, pred)
    }

J
Jorge Aparicio 已提交
947
    /// Returns an iterator over subslices separated by elements that match
948
    /// `pred` limited to returning at most `n` items. This starts at the end of
949
    /// the slice and works backwards. The matched element is not contained in
J
Jorge Aparicio 已提交
950
    /// the subslices.
951 952 953
    ///
    /// The last element returned, if any, will contain the remainder of the
    /// slice.
G
Guillaume Gomez 已提交
954 955 956 957 958 959 960 961 962 963 964
    ///
    /// # Examples
    ///
    /// ```
    /// let mut s = [10, 40, 30, 20, 60, 50];
    ///
    /// for group in s.rsplitn_mut(2, |num| *num % 3 == 0) {
    ///     group[0] = 1;
    /// }
    /// assert_eq!(s, [1, 40, 30, 20, 60, 1]);
    /// ```
J
Jorge Aparicio 已提交
965 966
    #[stable(feature = "rust1", since = "1.0.0")]
    #[inline]
N
Nick Cameron 已提交
967 968 969
    pub fn rsplitn_mut<F>(&mut self, n: usize, pred: F) -> RSplitNMut<T, F>
        where F: FnMut(&T) -> bool
    {
J
Jorge Aparicio 已提交
970 971 972
        core_slice::SliceExt::rsplitn_mut(self, n, pred)
    }

973
    /// Returns `true` if the slice contains an element with the given value.
J
Jorge Aparicio 已提交
974
    ///
975
    /// # Examples
J
Jorge Aparicio 已提交
976
    ///
977 978 979 980 981
    /// ```
    /// let v = [10, 40, 30];
    /// assert!(v.contains(&30));
    /// assert!(!v.contains(&50));
    /// ```
J
Jorge Aparicio 已提交
982
    #[stable(feature = "rust1", since = "1.0.0")]
N
Nick Cameron 已提交
983 984 985
    pub fn contains(&self, x: &T) -> bool
        where T: PartialEq
    {
986
        core_slice::SliceExt::contains(self, x)
J
Jorge Aparicio 已提交
987 988
    }

989
    /// Returns `true` if `needle` is a prefix of the slice.
J
Jorge Aparicio 已提交
990
    ///
991
    /// # Examples
J
Jorge Aparicio 已提交
992
    ///
993 994 995 996 997 998 999
    /// ```
    /// let v = [10, 40, 30];
    /// assert!(v.starts_with(&[10]));
    /// assert!(v.starts_with(&[10, 40]));
    /// assert!(!v.starts_with(&[50]));
    /// assert!(!v.starts_with(&[10, 50]));
    /// ```
1000 1001 1002 1003 1004 1005 1006 1007 1008
    ///
    /// Always returns `true` if `needle` is an empty slice:
    ///
    /// ```
    /// let v = &[10, 40, 30];
    /// assert!(v.starts_with(&[]));
    /// let v: &[u8] = &[];
    /// assert!(v.starts_with(&[]));
    /// ```
1009
    #[stable(feature = "rust1", since = "1.0.0")]
N
Nick Cameron 已提交
1010 1011 1012
    pub fn starts_with(&self, needle: &[T]) -> bool
        where T: PartialEq
    {
1013 1014 1015
        core_slice::SliceExt::starts_with(self, needle)
    }

1016
    /// Returns `true` if `needle` is a suffix of the slice.
J
Jorge Aparicio 已提交
1017
    ///
1018
    /// # Examples
J
Jorge Aparicio 已提交
1019
    ///
1020 1021 1022 1023 1024 1025 1026
    /// ```
    /// let v = [10, 40, 30];
    /// assert!(v.ends_with(&[30]));
    /// assert!(v.ends_with(&[40, 30]));
    /// assert!(!v.ends_with(&[50]));
    /// assert!(!v.ends_with(&[50, 30]));
    /// ```
1027 1028 1029 1030 1031 1032 1033 1034 1035
    ///
    /// Always returns `true` if `needle` is an empty slice:
    ///
    /// ```
    /// let v = &[10, 40, 30];
    /// assert!(v.ends_with(&[]));
    /// let v: &[u8] = &[];
    /// assert!(v.ends_with(&[]));
    /// ```
1036
    #[stable(feature = "rust1", since = "1.0.0")]
N
Nick Cameron 已提交
1037 1038 1039
    pub fn ends_with(&self, needle: &[T]) -> bool
        where T: PartialEq
    {
1040 1041 1042
        core_slice::SliceExt::ends_with(self, needle)
    }

1043
    /// Binary searches this sorted slice for a given element.
1044 1045 1046 1047 1048
    ///
    /// If the value is found then `Ok` is returned, containing the
    /// index of the matching element; if the value is not found then
    /// `Err` is returned, containing the index where a matching
    /// element could be inserted while maintaining sorted order.
J
Jorge Aparicio 已提交
1049
    ///
L
lukaramu 已提交
1050
    /// # Examples
J
Jorge Aparicio 已提交
1051
    ///
1052 1053
    /// Looks up a series of four elements. The first is found, with a
    /// uniquely determined position; the second and third are not
1054
    /// found; the fourth could match any position in `[1, 4]`.
1055
    ///
1056
    /// ```
1057 1058 1059 1060 1061 1062 1063
    /// let s = [0, 1, 1, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55];
    ///
    /// assert_eq!(s.binary_search(&13),  Ok(9));
    /// assert_eq!(s.binary_search(&4),   Err(7));
    /// assert_eq!(s.binary_search(&100), Err(13));
    /// let r = s.binary_search(&1);
    /// assert!(match r { Ok(1...4) => true, _ => false, });
J
Jorge Aparicio 已提交
1064 1065
    /// ```
    #[stable(feature = "rust1", since = "1.0.0")]
N
Nick Cameron 已提交
1066 1067 1068
    pub fn binary_search(&self, x: &T) -> Result<usize, usize>
        where T: Ord
    {
1069
        core_slice::SliceExt::binary_search(self, x)
J
Jorge Aparicio 已提交
1070 1071
    }

1072
    /// Binary searches this sorted slice with a comparator function.
J
Jorge Aparicio 已提交
1073
    ///
1074 1075 1076 1077
    /// The comparator function should implement an order consistent
    /// with the sort order of the underlying slice, returning an
    /// order code that indicates whether its argument is `Less`,
    /// `Equal` or `Greater` the desired target.
J
Jorge Aparicio 已提交
1078
    ///
1079 1080 1081 1082
    /// If a matching value is found then returns `Ok`, containing
    /// the index for the matched element; if no match is found then
    /// `Err` is returned, containing the index where a matching
    /// element could be inserted while maintaining sorted order.
J
Jorge Aparicio 已提交
1083
    ///
L
lukaramu 已提交
1084
    /// # Examples
J
Jorge Aparicio 已提交
1085
    ///
1086 1087
    /// Looks up a series of four elements. The first is found, with a
    /// uniquely determined position; the second and third are not
1088
    /// found; the fourth could match any position in `[1, 4]`.
J
Jorge Aparicio 已提交
1089
    ///
1090
    /// ```
1091
    /// let s = [0, 1, 1, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55];
J
Jorge Aparicio 已提交
1092
    ///
1093 1094 1095 1096 1097 1098 1099 1100 1101
    /// let seek = 13;
    /// assert_eq!(s.binary_search_by(|probe| probe.cmp(&seek)), Ok(9));
    /// let seek = 4;
    /// assert_eq!(s.binary_search_by(|probe| probe.cmp(&seek)), Err(7));
    /// let seek = 100;
    /// assert_eq!(s.binary_search_by(|probe| probe.cmp(&seek)), Err(13));
    /// let seek = 1;
    /// let r = s.binary_search_by(|probe| probe.cmp(&seek));
    /// assert!(match r { Ok(1...4) => true, _ => false, });
J
Jorge Aparicio 已提交
1102 1103 1104
    /// ```
    #[stable(feature = "rust1", since = "1.0.0")]
    #[inline]
1105 1106
    pub fn binary_search_by<'a, F>(&'a self, f: F) -> Result<usize, usize>
        where F: FnMut(&'a T) -> Ordering
N
Nick Cameron 已提交
1107
    {
1108
        core_slice::SliceExt::binary_search_by(self, f)
J
Jorge Aparicio 已提交
1109 1110
    }

1111
    /// Binary searches this sorted slice with a key extraction function.
1112 1113
    ///
    /// Assumes that the slice is sorted by the key, for instance with
1114
    /// [`sort_by_key`] using the same key extraction function.
1115 1116 1117 1118 1119 1120
    ///
    /// If a matching value is found then returns `Ok`, containing the
    /// index for the matched element; if no match is found then `Err`
    /// is returned, containing the index where a matching element could
    /// be inserted while maintaining sorted order.
    ///
1121 1122
    /// [`sort_by_key`]: #method.sort_by_key
    ///
1123 1124 1125 1126 1127
    /// # Examples
    ///
    /// Looks up a series of four elements in a slice of pairs sorted by
    /// their second elements. The first is found, with a uniquely
    /// determined position; the second and third are not found; the
1128
    /// fourth could match any position in `[1, 4]`.
1129
    ///
1130
    /// ```
1131 1132 1133 1134 1135 1136 1137 1138 1139 1140
    /// let s = [(0, 0), (2, 1), (4, 1), (5, 1), (3, 1),
    ///          (1, 2), (2, 3), (4, 5), (5, 8), (3, 13),
    ///          (1, 21), (2, 34), (4, 55)];
    ///
    /// assert_eq!(s.binary_search_by_key(&13, |&(a,b)| b),  Ok(9));
    /// assert_eq!(s.binary_search_by_key(&4, |&(a,b)| b),   Err(7));
    /// assert_eq!(s.binary_search_by_key(&100, |&(a,b)| b), Err(13));
    /// let r = s.binary_search_by_key(&1, |&(a,b)| b);
    /// assert!(match r { Ok(1...4) => true, _ => false, });
    /// ```
1141
    #[stable(feature = "slice_binary_search_by_key", since = "1.10.0")]
1142
    #[inline]
1143 1144
    pub fn binary_search_by_key<'a, B, F>(&'a self, b: &B, f: F) -> Result<usize, usize>
        where F: FnMut(&'a T) -> B,
1145 1146 1147 1148 1149
              B: Ord
    {
        core_slice::SliceExt::binary_search_by_key(self, b, f)
    }

1150
    /// Sorts the slice.
1151
    ///
S
Stjepan Glavina 已提交
1152
    /// This sort is stable (i.e. does not reorder equal elements) and `O(n log n)` worst-case.
1153
    ///
1154 1155 1156 1157
    /// When applicable, unstable sorting is preferred because it is generally faster than stable
    /// sorting and it doesn't allocate auxiliary memory.
    /// See [`sort_unstable`](#method.sort_unstable).
    ///
S
Stjepan Glavina 已提交
1158
    /// # Current implementation
S
Stjepan Glavina 已提交
1159
    ///
S
Stjepan Glavina 已提交
1160 1161 1162 1163 1164 1165 1166
    /// The current algorithm is an adaptive, iterative merge sort inspired by
    /// [timsort](https://en.wikipedia.org/wiki/Timsort).
    /// It is designed to be very fast in cases where the slice is nearly sorted, or consists of
    /// two or more sorted sequences concatenated one after another.
    ///
    /// Also, it allocates temporary storage half the size of `self`, but for short slices a
    /// non-allocating insertion sort is used instead.
1167
    ///
1168
    /// # Examples
J
Jorge Aparicio 已提交
1169
    ///
1170
    /// ```
1171 1172 1173 1174
    /// let mut v = [-5, 4, 1, -3, 2];
    ///
    /// v.sort();
    /// assert!(v == [-5, -3, 1, 2, 4]);
J
Jorge Aparicio 已提交
1175 1176 1177
    /// ```
    #[stable(feature = "rust1", since = "1.0.0")]
    #[inline]
N
Nick Cameron 已提交
1178 1179 1180
    pub fn sort(&mut self)
        where T: Ord
    {
S
Stjepan Glavina 已提交
1181
        merge_sort(self, |a, b| a.lt(b));
J
Jorge Aparicio 已提交
1182 1183
    }

1184
    /// Sorts the slice with a comparator function.
1185 1186 1187
    ///
    /// This sort is stable (i.e. does not reorder equal elements) and `O(n log n)` worst-case.
    ///
1188 1189 1190 1191
    /// When applicable, unstable sorting is preferred because it is generally faster than stable
    /// sorting and it doesn't allocate auxiliary memory.
    /// See [`sort_unstable_by`](#method.sort_unstable_by).
    ///
1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220
    /// # Current implementation
    ///
    /// The current algorithm is an adaptive, iterative merge sort inspired by
    /// [timsort](https://en.wikipedia.org/wiki/Timsort).
    /// It is designed to be very fast in cases where the slice is nearly sorted, or consists of
    /// two or more sorted sequences concatenated one after another.
    ///
    /// Also, it allocates temporary storage half the size of `self`, but for short slices a
    /// non-allocating insertion sort is used instead.
    ///
    /// # Examples
    ///
    /// ```
    /// let mut v = [5, 4, 1, 3, 2];
    /// v.sort_by(|a, b| a.cmp(b));
    /// assert!(v == [1, 2, 3, 4, 5]);
    ///
    /// // reverse sorting
    /// v.sort_by(|a, b| b.cmp(a));
    /// assert!(v == [5, 4, 3, 2, 1]);
    /// ```
    #[stable(feature = "rust1", since = "1.0.0")]
    #[inline]
    pub fn sort_by<F>(&mut self, mut compare: F)
        where F: FnMut(&T, &T) -> Ordering
    {
        merge_sort(self, |a, b| compare(a, b) == Less);
    }

1221
    /// Sorts the slice with a key extraction function.
S
Stjepan Glavina 已提交
1222 1223 1224
    ///
    /// This sort is stable (i.e. does not reorder equal elements) and `O(n log n)` worst-case.
    ///
1225 1226 1227 1228
    /// When applicable, unstable sorting is preferred because it is generally faster than stable
    /// sorting and it doesn't allocate auxiliary memory.
    /// See [`sort_unstable_by_key`](#method.sort_unstable_by_key).
    ///
S
Stjepan Glavina 已提交
1229 1230 1231 1232 1233 1234
    /// # Current implementation
    ///
    /// The current algorithm is an adaptive, iterative merge sort inspired by
    /// [timsort](https://en.wikipedia.org/wiki/Timsort).
    /// It is designed to be very fast in cases where the slice is nearly sorted, or consists of
    /// two or more sorted sequences concatenated one after another.
1235
    ///
S
Stjepan Glavina 已提交
1236 1237
    /// Also, it allocates temporary storage half the size of `self`, but for short slices a
    /// non-allocating insertion sort is used instead.
1238 1239 1240
    ///
    /// # Examples
    ///
1241
    /// ```
1242 1243 1244 1245 1246
    /// let mut v = [-5i32, 4, 1, -3, 2];
    ///
    /// v.sort_by_key(|k| k.abs());
    /// assert!(v == [1, 2, -3, 4, -5]);
    /// ```
1247
    #[stable(feature = "slice_sort_by_key", since = "1.7.0")]
1248 1249 1250 1251
    #[inline]
    pub fn sort_by_key<B, F>(&mut self, mut f: F)
        where F: FnMut(&T) -> B, B: Ord
    {
S
Stjepan Glavina 已提交
1252
        merge_sort(self, |a, b| f(a).lt(&f(b)));
1253 1254
    }

1255
    /// Sorts the slice, but may not preserve the order of equal elements.
S
Stjepan Glavina 已提交
1256
    ///
1257 1258
    /// This sort is unstable (i.e. may reorder equal elements), in-place (i.e. does not allocate),
    /// and `O(n log n)` worst-case.
S
Stjepan Glavina 已提交
1259 1260 1261
    ///
    /// # Current implementation
    ///
1262 1263 1264 1265 1266
    /// The current algorithm is based on [pattern-defeating quicksort][pdqsort] by Orson Peters,
    /// which combines the fast average case of randomized quicksort with the fast worst case of
    /// heapsort, while achieving linear time on slices with certain patterns. It uses some
    /// randomization to avoid degenerate cases, but with a fixed seed to always provide
    /// deterministic behavior.
J
Jorge Aparicio 已提交
1267
    ///
1268
    /// It is typically faster than stable sorting, except in a few special cases, e.g. when the
1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280
    /// slice consists of several concatenated sorted sequences.
    ///
    /// # Examples
    ///
    /// ```
    /// let mut v = [-5, 4, 1, -3, 2];
    ///
    /// v.sort_unstable();
    /// assert!(v == [-5, -3, 1, 2, 4]);
    /// ```
    ///
    /// [pdqsort]: https://github.com/orlp/pdqsort
1281
    #[stable(feature = "sort_unstable", since = "1.20.0")]
1282 1283 1284 1285 1286 1287 1288
    #[inline]
    pub fn sort_unstable(&mut self)
        where T: Ord
    {
        core_slice::SliceExt::sort_unstable(self);
    }

1289 1290
    /// Sorts the slice with a comparator function, but may not preserve the order of equal
    /// elements.
1291 1292 1293 1294 1295 1296
    ///
    /// This sort is unstable (i.e. may reorder equal elements), in-place (i.e. does not allocate),
    /// and `O(n log n)` worst-case.
    ///
    /// # Current implementation
    ///
1297 1298 1299 1300 1301
    /// The current algorithm is based on [pattern-defeating quicksort][pdqsort] by Orson Peters,
    /// which combines the fast average case of randomized quicksort with the fast worst case of
    /// heapsort, while achieving linear time on slices with certain patterns. It uses some
    /// randomization to avoid degenerate cases, but with a fixed seed to always provide
    /// deterministic behavior.
1302
    ///
1303
    /// It is typically faster than stable sorting, except in a few special cases, e.g. when the
1304
    /// slice consists of several concatenated sorted sequences.
J
Jorge Aparicio 已提交
1305
    ///
1306 1307
    /// # Examples
    ///
1308
    /// ```
1309
    /// let mut v = [5, 4, 1, 3, 2];
1310
    /// v.sort_unstable_by(|a, b| a.cmp(b));
1311 1312 1313
    /// assert!(v == [1, 2, 3, 4, 5]);
    ///
    /// // reverse sorting
1314
    /// v.sort_unstable_by(|a, b| b.cmp(a));
1315 1316
    /// assert!(v == [5, 4, 3, 2, 1]);
    /// ```
1317 1318
    ///
    /// [pdqsort]: https://github.com/orlp/pdqsort
1319
    #[stable(feature = "sort_unstable", since = "1.20.0")]
J
Jorge Aparicio 已提交
1320
    #[inline]
1321
    pub fn sort_unstable_by<F>(&mut self, compare: F)
N
Nick Cameron 已提交
1322 1323
        where F: FnMut(&T, &T) -> Ordering
    {
1324 1325 1326
        core_slice::SliceExt::sort_unstable_by(self, compare);
    }

1327 1328
    /// Sorts the slice with a key extraction function, but may not preserve the order of equal
    /// elements.
1329 1330 1331 1332 1333 1334
    ///
    /// This sort is unstable (i.e. may reorder equal elements), in-place (i.e. does not allocate),
    /// and `O(n log n)` worst-case.
    ///
    /// # Current implementation
    ///
1335 1336 1337 1338 1339
    /// The current algorithm is based on [pattern-defeating quicksort][pdqsort] by Orson Peters,
    /// which combines the fast average case of randomized quicksort with the fast worst case of
    /// heapsort, while achieving linear time on slices with certain patterns. It uses some
    /// randomization to avoid degenerate cases, but with a fixed seed to always provide
    /// deterministic behavior.
1340
    ///
1341
    /// It is typically faster than stable sorting, except in a few special cases, e.g. when the
1342 1343 1344 1345 1346 1347 1348 1349 1350
    /// slice consists of several concatenated sorted sequences.
    ///
    /// # Examples
    ///
    /// ```
    /// let mut v = [-5i32, 4, 1, -3, 2];
    ///
    /// v.sort_unstable_by_key(|k| k.abs());
    /// assert!(v == [1, 2, -3, 4, -5]);
S
Stjepan Glavina 已提交
1351
    /// ```
1352 1353
    ///
    /// [pdqsort]: https://github.com/orlp/pdqsort
1354
    #[stable(feature = "sort_unstable", since = "1.20.0")]
1355 1356 1357 1358 1359 1360
    #[inline]
    pub fn sort_unstable_by_key<B, F>(&mut self, f: F)
        where F: FnMut(&T) -> B,
              B: Ord
    {
        core_slice::SliceExt::sort_unstable_by_key(self, f);
J
Jorge Aparicio 已提交
1361 1362
    }

S
Scott McMurray 已提交
1363 1364
    /// Permutes the slice in-place such that `self[mid..]` moves to the
    /// beginning of the slice while `self[..mid]` moves to the end of the
1365 1366 1367 1368 1369 1370 1371
    /// slice.  Equivalently, rotates the slice `mid` places to the left
    /// or `k = self.len() - mid` places to the right.
    ///
    /// This is a "k-rotation", a permutation in which item `i` moves to
    /// position `i + k`, modulo the length of the slice.  See _Elements
    /// of Programming_ [§10.4][eop].
    ///
1372 1373
    /// Rotation by `mid` and rotation by `k` are inverse operations.
    ///
1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391
    /// [eop]: https://books.google.com/books?id=CO9ULZGINlsC&pg=PA178&q=k-rotation
    ///
    /// # Panics
    ///
    /// This function will panic if `mid` is greater than the length of the
    /// slice.  (Note that `mid == self.len()` does _not_ panic; it's a nop
    /// rotation with `k == 0`, the inverse of a rotation with `mid == 0`.)
    ///
    /// # Complexity
    ///
    /// Takes linear (in `self.len()`) time.
    ///
    /// # Examples
    ///
    /// ```
    /// #![feature(slice_rotate)]
    ///
    /// let mut a = [1, 2, 3, 4, 5, 6, 7];
1392 1393
    /// let mid = 2;
    /// a.rotate(mid);
1394
    /// assert_eq!(&a, &[3, 4, 5, 6, 7, 1, 2]);
1395
    /// let k = a.len() - mid;
1396 1397 1398
    /// a.rotate(k);
    /// assert_eq!(&a, &[1, 2, 3, 4, 5, 6, 7]);
    ///
1399 1400 1401 1402 1403 1404 1405
    /// use std::ops::Range;
    /// fn slide<T>(slice: &mut [T], range: Range<usize>, to: usize) {
    ///     if to < range.start {
    ///         slice[to..range.end].rotate(range.start-to);
    ///     } else if to > range.end {
    ///         slice[range.start..to].rotate(range.end-range.start);
    ///     }
1406
    /// }
1407 1408 1409 1410 1411
    /// let mut v: Vec<_> = (0..10).collect();
    /// slide(&mut v, 1..4, 7);
    /// assert_eq!(&v, &[0, 4, 5, 6, 1, 2, 3, 7, 8, 9]);
    /// slide(&mut v, 6..8, 1);
    /// assert_eq!(&v, &[0, 3, 7, 4, 5, 6, 1, 2, 8, 9]);
1412
    /// ```
1413
    #[unstable(feature = "slice_rotate", issue = "41891")]
1414 1415
    pub fn rotate(&mut self, mid: usize) {
        core_slice::SliceExt::rotate(self, mid);
1416 1417
    }

1418 1419
    /// Copies the elements from `src` into `self`.
    ///
1420
    /// The length of `src` must be the same as `self`.
1421
    ///
1422 1423 1424
    /// If `src` implements `Copy`, it can be more performant to use
    /// [`copy_from_slice`].
    ///
1425 1426 1427
    /// # Panics
    ///
    /// This function will panic if the two slices have different lengths.
J
Jorge Aparicio 已提交
1428
    ///
L
lukaramu 已提交
1429
    /// # Examples
J
Jorge Aparicio 已提交
1430
    ///
1431
    /// ```
1432
    /// let mut dst = [0, 0, 0];
1433
    /// let src = [1, 2, 3];
J
Jorge Aparicio 已提交
1434
    ///
1435 1436
    /// dst.clone_from_slice(&src);
    /// assert!(dst == [1, 2, 3]);
J
Jorge Aparicio 已提交
1437
    /// ```
1438 1439
    ///
    /// [`copy_from_slice`]: #method.copy_from_slice
1440 1441
    #[stable(feature = "clone_from_slice", since = "1.7.0")]
    pub fn clone_from_slice(&mut self, src: &[T]) where T: Clone {
1442
        core_slice::SliceExt::clone_from_slice(self, src)
J
Jorge Aparicio 已提交
1443 1444
    }

N
Nicholas Mazzuca 已提交
1445 1446 1447 1448
    /// Copies all elements from `src` into `self`, using a memcpy.
    ///
    /// The length of `src` must be the same as `self`.
    ///
1449 1450
    /// If `src` does not implement `Copy`, use [`clone_from_slice`].
    ///
N
Nicholas Mazzuca 已提交
1451 1452 1453 1454
    /// # Panics
    ///
    /// This function will panic if the two slices have different lengths.
    ///
L
lukaramu 已提交
1455
    /// # Examples
N
Nicholas Mazzuca 已提交
1456
    ///
1457
    /// ```
N
Nicholas Mazzuca 已提交
1458 1459 1460 1461 1462 1463
    /// let mut dst = [0, 0, 0];
    /// let src = [1, 2, 3];
    ///
    /// dst.copy_from_slice(&src);
    /// assert_eq!(src, dst);
    /// ```
1464 1465
    ///
    /// [`clone_from_slice`]: #method.clone_from_slice
1466
    #[stable(feature = "copy_from_slice", since = "1.9.0")]
N
Nicholas Mazzuca 已提交
1467 1468 1469 1470
    pub fn copy_from_slice(&mut self, src: &[T]) where T: Copy {
        core_slice::SliceExt::copy_from_slice(self, src)
    }

S
Scott McMurray 已提交
1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495
    /// Swaps all elements in `self` with those in `src`.
    ///
    /// The length of `src` must be the same as `self`.
    ///
    /// # Panics
    ///
    /// This function will panic if the two slices have different lengths.
    ///
    /// # Example
    ///
    /// ```
    /// #![feature(swap_with_slice)]
    ///
    /// let mut src = [1, 2, 3];
    /// let mut dst = [7, 8, 9];
    ///
    /// src.swap_with_slice(&mut dst);
    /// assert_eq!(src, [7, 8, 9]);
    /// assert_eq!(dst, [1, 2, 3]);
    /// ```
    #[unstable(feature = "swap_with_slice", issue = "44030")]
    pub fn swap_with_slice(&mut self, src: &mut [T]) {
        core_slice::SliceExt::swap_with_slice(self, src)
    }

1496
    /// Copies `self` into a new `Vec`.
G
Guillaume Gomez 已提交
1497 1498 1499 1500 1501 1502 1503 1504
    ///
    /// # Examples
    ///
    /// ```
    /// let s = [10, 40, 30];
    /// let x = s.to_vec();
    /// // Here, `s` and `x` can be modified independently.
    /// ```
J
Jorge Aparicio 已提交
1505
    #[stable(feature = "rust1", since = "1.0.0")]
1506
    #[inline]
N
Nick Cameron 已提交
1507 1508 1509
    pub fn to_vec(&self) -> Vec<T>
        where T: Clone
    {
1510 1511
        // NB see hack module in this file
        hack::to_vec(self)
J
Jorge Aparicio 已提交
1512 1513
    }

1514
    /// Converts `self` into a vector without clones or allocation.
G
Guillaume Gomez 已提交
1515
    ///
1516
    /// The resulting vector can be converted back into a box via
1517
    /// `Vec<T>`'s `into_boxed_slice` method.
1518
    ///
G
Guillaume Gomez 已提交
1519 1520 1521 1522 1523 1524 1525
    /// # Examples
    ///
    /// ```
    /// let s: Box<[i32]> = Box::new([10, 40, 30]);
    /// let x = s.into_vec();
    /// // `s` cannot be used anymore because it has been converted into `x`.
    ///
1526
    /// assert_eq!(x, vec![10, 40, 30]);
G
Guillaume Gomez 已提交
1527
    /// ```
J
Jorge Aparicio 已提交
1528
    #[stable(feature = "rust1", since = "1.0.0")]
1529 1530 1531 1532
    #[inline]
    pub fn into_vec(self: Box<Self>) -> Vec<T> {
        // NB see hack module in this file
        hack::into_vec(self)
J
Jorge Aparicio 已提交
1533 1534 1535
    }
}

A
Alex Crichton 已提交
1536
////////////////////////////////////////////////////////////////////////////////
J
Joseph Crail 已提交
1537
// Extension traits for slices over specific kinds of data
A
Alex Crichton 已提交
1538
////////////////////////////////////////////////////////////////////////////////
1539
#[unstable(feature = "slice_concat_ext",
1540 1541
           reason = "trait should not have to exist",
           issue = "27747")]
A
Aaron Turon 已提交
1542
/// An extension trait for concatenating slices
1543
pub trait SliceConcatExt<T: ?Sized> {
1544
    #[unstable(feature = "slice_concat_ext",
1545 1546
               reason = "trait should not have to exist",
               issue = "27747")]
1547 1548 1549
    /// The resulting type after concatenation
    type Output;

1550
    /// Flattens a slice of `T` into a single value `Self::Output`.
1551 1552 1553 1554
    ///
    /// # Examples
    ///
    /// ```
1555
    /// assert_eq!(["hello", "world"].concat(), "helloworld");
1556
    /// assert_eq!([[1, 2], [3, 4]].concat(), [1, 2, 3, 4]);
1557
    /// ```
B
Brian Anderson 已提交
1558
    #[stable(feature = "rust1", since = "1.0.0")]
1559
    fn concat(&self) -> Self::Output;
A
Alex Crichton 已提交
1560

1561 1562 1563 1564 1565 1566 1567
    /// Flattens a slice of `T` into a single value `Self::Output`, placing a
    /// given separator between each.
    ///
    /// # Examples
    ///
    /// ```
    /// assert_eq!(["hello", "world"].join(" "), "hello world");
1568
    /// assert_eq!([[1, 2], [3, 4]].join(&0), [1, 2, 0, 3, 4]);
1569
    /// ```
W
Wesley Wiser 已提交
1570
    #[stable(feature = "rename_connect_to_join", since = "1.3.0")]
1571 1572
    fn join(&self, sep: &T) -> Self::Output;

B
Brian Anderson 已提交
1573
    #[stable(feature = "rust1", since = "1.0.0")]
1574
    #[rustc_deprecated(since = "1.3.0", reason = "renamed to join")]
1575
    fn connect(&self, sep: &T) -> Self::Output;
A
Aaron Turon 已提交
1576
}
A
Alex Crichton 已提交
1577

1578 1579 1580
#[unstable(feature = "slice_concat_ext",
           reason = "trait should not have to exist",
           issue = "27747")]
1581
impl<T: Clone, V: Borrow<[T]>> SliceConcatExt<T> for [V] {
1582 1583
    type Output = Vec<T>;

A
Aaron Turon 已提交
1584
    fn concat(&self) -> Vec<T> {
1585
        let size = self.iter().fold(0, |acc, v| acc + v.borrow().len());
A
Aaron Turon 已提交
1586
        let mut result = Vec::with_capacity(size);
1587
        for v in self {
1588
            result.extend_from_slice(v.borrow())
A
Aaron Turon 已提交
1589 1590
        }
        result
A
Alex Crichton 已提交
1591 1592
    }

1593
    fn join(&self, sep: &T) -> Vec<T> {
1594
        let size = self.iter().fold(0, |acc, v| acc + v.borrow().len());
A
Aaron Turon 已提交
1595 1596
        let mut result = Vec::with_capacity(size + self.len());
        let mut first = true;
1597
        for v in self {
N
Nick Cameron 已提交
1598 1599 1600 1601 1602
            if first {
                first = false
            } else {
                result.push(sep.clone())
            }
1603
            result.extend_from_slice(v.borrow())
A
Aaron Turon 已提交
1604 1605
        }
        result
A
Alex Crichton 已提交
1606
    }
1607 1608 1609 1610

    fn connect(&self, sep: &T) -> Vec<T> {
        self.join(sep)
    }
A
Aaron Turon 已提交
1611
}
A
Alex Crichton 已提交
1612

A
Aaron Turon 已提交
1613 1614 1615 1616
////////////////////////////////////////////////////////////////////////////////
// Standard trait implementations for slices
////////////////////////////////////////////////////////////////////////////////

A
Aaron Turon 已提交
1617 1618
#[stable(feature = "rust1", since = "1.0.0")]
impl<T> Borrow<[T]> for Vec<T> {
N
Nick Cameron 已提交
1619 1620 1621
    fn borrow(&self) -> &[T] {
        &self[..]
    }
A
Aaron Turon 已提交
1622 1623
}

A
Aaron Turon 已提交
1624 1625
#[stable(feature = "rust1", since = "1.0.0")]
impl<T> BorrowMut<[T]> for Vec<T> {
N
Nick Cameron 已提交
1626 1627 1628
    fn borrow_mut(&mut self) -> &mut [T] {
        &mut self[..]
    }
A
Aaron Turon 已提交
1629 1630
}

A
Aaron Turon 已提交
1631 1632 1633
#[stable(feature = "rust1", since = "1.0.0")]
impl<T: Clone> ToOwned for [T] {
    type Owned = Vec<T>;
1634
    #[cfg(not(test))]
N
Nick Cameron 已提交
1635 1636 1637
    fn to_owned(&self) -> Vec<T> {
        self.to_vec()
    }
1638 1639

    #[cfg(test)]
N
Nick Cameron 已提交
1640
    fn to_owned(&self) -> Vec<T> {
S
Simon Sapin 已提交
1641
        hack::to_vec(self)
N
Nick Cameron 已提交
1642
    }
1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655

    fn clone_into(&self, target: &mut Vec<T>) {
        // drop anything in target that will not be overwritten
        target.truncate(self.len());
        let len = target.len();

        // reuse the contained values' allocations/resources.
        target.clone_from_slice(&self[..len]);

        // target.len <= self.len due to the truncate above, so the
        // slice here is always in-bounds.
        target.extend_from_slice(&self[len..]);
    }
A
Aaron Turon 已提交
1656 1657 1658 1659 1660 1661
}

////////////////////////////////////////////////////////////////////////////////
// Sorting
////////////////////////////////////////////////////////////////////////////////

1662 1663 1664
/// Inserts `v[0]` into pre-sorted sequence `v[1..]` so that whole `v[..]` becomes sorted.
///
/// This is the integral subroutine of insertion sort.
S
Stjepan Glavina 已提交
1665 1666
fn insert_head<T, F>(v: &mut [T], is_less: &mut F)
    where F: FnMut(&T, &T) -> bool
N
Nick Cameron 已提交
1667
{
S
Stjepan Glavina 已提交
1668
    if v.len() >= 2 && is_less(&v[1], &v[0]) {
A
Aaron Turon 已提交
1669
        unsafe {
1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686
            // There are three ways to implement insertion here:
            //
            // 1. Swap adjacent elements until the first one gets to its final destination.
            //    However, this way we copy data around more than is necessary. If elements are big
            //    structures (costly to copy), this method will be slow.
            //
            // 2. Iterate until the right place for the first element is found. Then shift the
            //    elements succeeding it to make room for it and finally place it into the
            //    remaining hole. This is a good method.
            //
            // 3. Copy the first element into a temporary variable. Iterate until the right place
            //    for it is found. As we go along, copy every traversed element into the slot
            //    preceding it. Finally, copy data from the temporary variable into the remaining
            //    hole. This method is very good. Benchmarks demonstrated slightly better
            //    performance than with the 2nd method.
            //
            // All methods were benchmarked, and the 3rd showed best results. So we chose that one.
1687
            let mut tmp = mem::ManuallyDrop::new(ptr::read(&v[0]));
1688 1689 1690

            // Intermediate state of the insertion process is always tracked by `hole`, which
            // serves two purposes:
S
Stjepan Glavina 已提交
1691
            // 1. Protects integrity of `v` from panics in `is_less`.
1692 1693 1694 1695
            // 2. Fills the remaining hole in `v` in the end.
            //
            // Panic safety:
            //
S
Stjepan Glavina 已提交
1696
            // If `is_less` panics at any point during the process, `hole` will get dropped and
1697 1698 1699
            // fill the hole in `v` with `tmp`, thus ensuring that `v` still holds every object it
            // initially held exactly once.
            let mut hole = InsertionHole {
1700
                src: &mut *tmp,
1701 1702 1703 1704 1705
                dest: &mut v[1],
            };
            ptr::copy_nonoverlapping(&v[1], &mut v[0], 1);

            for i in 2..v.len() {
1706
                if !is_less(&v[i], &*tmp) {
1707 1708 1709 1710
                    break;
                }
                ptr::copy_nonoverlapping(&v[i], &mut v[i - 1], 1);
                hole.dest = &mut v[i];
A
Aaron Turon 已提交
1711
            }
1712 1713 1714
            // `hole` gets dropped and thus copies `tmp` into the remaining hole in `v`.
        }
    }
A
Alex Crichton 已提交
1715

1716 1717 1718 1719 1720
    // When dropped, copies from `src` into `dest`.
    struct InsertionHole<T> {
        src: *mut T,
        dest: *mut T,
    }
A
Alex Crichton 已提交
1721

1722 1723 1724
    impl<T> Drop for InsertionHole<T> {
        fn drop(&mut self) {
            unsafe { ptr::copy_nonoverlapping(self.src, self.dest, 1); }
A
Aaron Turon 已提交
1725
        }
A
Alex Crichton 已提交
1726
    }
A
Aaron Turon 已提交
1727
}
A
Alex Crichton 已提交
1728

1729 1730 1731 1732 1733 1734 1735
/// Merges non-decreasing runs `v[..mid]` and `v[mid..]` using `buf` as temporary storage, and
/// stores the result into `v[..]`.
///
/// # Safety
///
/// The two slices must be non-empty and `mid` must be in bounds. Buffer `buf` must be long enough
/// to hold a copy of the shorter slice. Also, `T` must not be a zero-sized type.
S
Stjepan Glavina 已提交
1736 1737
unsafe fn merge<T, F>(v: &mut [T], mid: usize, buf: *mut T, is_less: &mut F)
    where F: FnMut(&T, &T) -> bool
N
Nick Cameron 已提交
1738
{
1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752
    let len = v.len();
    let v = v.as_mut_ptr();
    let v_mid = v.offset(mid as isize);
    let v_end = v.offset(len as isize);

    // The merge process first copies the shorter run into `buf`. Then it traces the newly copied
    // run and the longer run forwards (or backwards), comparing their next unconsumed elements and
    // copying the lesser (or greater) one into `v`.
    //
    // As soon as the shorter run is fully consumed, the process is done. If the longer run gets
    // consumed first, then we must copy whatever is left of the shorter run into the remaining
    // hole in `v`.
    //
    // Intermediate state of the process is always tracked by `hole`, which serves two purposes:
S
Stjepan Glavina 已提交
1753
    // 1. Protects integrity of `v` from panics in `is_less`.
1754 1755 1756 1757
    // 2. Fills the remaining hole in `v` if the longer run gets consumed first.
    //
    // Panic safety:
    //
S
Stjepan Glavina 已提交
1758
    // If `is_less` panics at any point during the process, `hole` will get dropped and fill the
1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779
    // hole in `v` with the unconsumed range in `buf`, thus ensuring that `v` still holds every
    // object it initially held exactly once.
    let mut hole;

    if mid <= len - mid {
        // The left run is shorter.
        ptr::copy_nonoverlapping(v, buf, mid);
        hole = MergeHole {
            start: buf,
            end: buf.offset(mid as isize),
            dest: v,
        };

        // Initially, these pointers point to the beginnings of their arrays.
        let left = &mut hole.start;
        let mut right = v_mid;
        let out = &mut hole.dest;

        while *left < hole.end && right < v_end {
            // Consume the lesser side.
            // If equal, prefer the left run to maintain stability.
S
Stjepan Glavina 已提交
1780
            let to_copy = if is_less(&*right, &**left) {
1781 1782 1783 1784 1785 1786
                get_and_increment(&mut right)
            } else {
                get_and_increment(left)
            };
            ptr::copy_nonoverlapping(to_copy, get_and_increment(out), 1);
        }
A
Aaron Turon 已提交
1787
    } else {
1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803
        // The right run is shorter.
        ptr::copy_nonoverlapping(v_mid, buf, len - mid);
        hole = MergeHole {
            start: buf,
            end: buf.offset((len - mid) as isize),
            dest: v_mid,
        };

        // Initially, these pointers point past the ends of their arrays.
        let left = &mut hole.dest;
        let right = &mut hole.end;
        let mut out = v_end;

        while v < *left && buf < *right {
            // Consume the greater side.
            // If equal, prefer the right run to maintain stability.
S
Stjepan Glavina 已提交
1804
            let to_copy = if is_less(&*right.offset(-1), &*left.offset(-1)) {
1805 1806 1807 1808 1809 1810 1811 1812 1813
                decrement_and_get(left)
            } else {
                decrement_and_get(right)
            };
            ptr::copy_nonoverlapping(to_copy, decrement_and_get(&mut out), 1);
        }
    }
    // Finally, `hole` gets dropped. If the shorter run was not fully consumed, whatever remains of
    // it will now be copied into the hole in `v`.
A
Alex Crichton 已提交
1814

1815 1816 1817 1818 1819
    unsafe fn get_and_increment<T>(ptr: &mut *mut T) -> *mut T {
        let old = *ptr;
        *ptr = ptr.offset(1);
        old
    }
A
Alex Crichton 已提交
1820

1821 1822 1823
    unsafe fn decrement_and_get<T>(ptr: &mut *mut T) -> *mut T {
        *ptr = ptr.offset(-1);
        *ptr
A
Alex Crichton 已提交
1824 1825
    }

1826 1827 1828 1829 1830 1831
    // When dropped, copies the range `start..end` into `dest..`.
    struct MergeHole<T> {
        start: *mut T,
        end: *mut T,
        dest: *mut T,
    }
A
Alex Crichton 已提交
1832

1833 1834
    impl<T> Drop for MergeHole<T> {
        fn drop(&mut self) {
1835
            // `T` is not a zero-sized type, so it's okay to divide by its size.
1836 1837 1838 1839 1840
            let len = (self.end as usize - self.start as usize) / mem::size_of::<T>();
            unsafe { ptr::copy_nonoverlapping(self.start, self.dest, len); }
        }
    }
}
A
Alex Crichton 已提交
1841

1842 1843 1844 1845 1846 1847
/// This merge sort borrows some (but not all) ideas from TimSort, which is described in detail
/// [here](http://svn.python.org/projects/python/trunk/Objects/listsort.txt).
///
/// The algorithm identifies strictly descending and non-descending subsequences, which are called
/// natural runs. There is a stack of pending runs yet to be merged. Each newly found run is pushed
/// onto the stack, and then some pairs of adjacent runs are merged until these two invariants are
1848
/// satisfied:
1849
///
1850 1851
/// 1. for every `i` in `1..runs.len()`: `runs[i - 1].len > runs[i].len`
/// 2. for every `i` in `2..runs.len()`: `runs[i - 2].len > runs[i - 1].len + runs[i].len`
1852 1853
///
/// The invariants ensure that the total running time is `O(n log n)` worst-case.
S
Stjepan Glavina 已提交
1854 1855
fn merge_sort<T, F>(v: &mut [T], mut is_less: F)
    where F: FnMut(&T, &T) -> bool
1856
{
1857
    // Slices of up to this length get sorted using insertion sort.
S
Stjepan Glavina 已提交
1858
    const MAX_INSERTION: usize = 20;
1859
    // Very short runs are extended using insertion sort to span at least this many elements.
S
Stjepan Glavina 已提交
1860
    const MIN_RUN: usize = 10;
1861

1862 1863 1864 1865
    // Sorting has no meaningful behavior on zero-sized types.
    if size_of::<T>() == 0 {
        return;
    }
A
Alex Crichton 已提交
1866

1867
    let len = v.len();
A
Alex Crichton 已提交
1868

1869
    // Short arrays get sorted in-place via insertion sort to avoid allocations.
1870
    if len <= MAX_INSERTION {
1871 1872
        if len >= 2 {
            for i in (0..len-1).rev() {
S
Stjepan Glavina 已提交
1873
                insert_head(&mut v[i..], &mut is_less);
A
Aaron Turon 已提交
1874 1875
            }
        }
1876
        return;
A
Alex Crichton 已提交
1877 1878
    }

1879 1880
    // Allocate a buffer to use as scratch memory. We keep the length 0 so we can keep in it
    // shallow copies of the contents of `v` without risking the dtors running on copies if
S
Stjepan Glavina 已提交
1881
    // `is_less` panics. When merging two sorted runs, this buffer holds a copy of the shorter run,
1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895
    // which will always have length at most `len / 2`.
    let mut buf = Vec::with_capacity(len / 2);

    // In order to identify natural runs in `v`, we traverse it backwards. That might seem like a
    // strange decision, but consider the fact that merges more often go in the opposite direction
    // (forwards). According to benchmarks, merging forwards is slightly faster than merging
    // backwards. To conclude, identifying runs by traversing backwards improves performance.
    let mut runs = vec![];
    let mut end = len;
    while end > 0 {
        // Find the next natural run, and reverse it if it's strictly descending.
        let mut start = end - 1;
        if start > 0 {
            start -= 1;
S
Stjepan Glavina 已提交
1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907
            unsafe {
                if is_less(v.get_unchecked(start + 1), v.get_unchecked(start)) {
                    while start > 0 && is_less(v.get_unchecked(start),
                                               v.get_unchecked(start - 1)) {
                        start -= 1;
                    }
                    v[start..end].reverse();
                } else {
                    while start > 0 && !is_less(v.get_unchecked(start),
                                                v.get_unchecked(start - 1)) {
                        start -= 1;
                    }
A
Aaron Turon 已提交
1908 1909 1910
                }
            }
        }
A
Alex Crichton 已提交
1911

1912 1913
        // Insert some more elements into the run if it's too short. Insertion sort is faster than
        // merge sort on short sequences, so this significantly improves performance.
1914
        while start > 0 && end - start < MIN_RUN {
1915
            start -= 1;
S
Stjepan Glavina 已提交
1916
            insert_head(&mut v[start..end], &mut is_less);
1917
        }
A
Alex Crichton 已提交
1918

1919 1920
        // Push this run onto the stack.
        runs.push(Run {
1921
            start,
1922 1923 1924 1925 1926 1927 1928 1929 1930 1931
            len: end - start,
        });
        end = start;

        // Merge some pairs of adjacent runs to satisfy the invariants.
        while let Some(r) = collapse(&runs) {
            let left = runs[r + 1];
            let right = runs[r];
            unsafe {
                merge(&mut v[left.start .. right.start + right.len], left.len, buf.as_mut_ptr(),
S
Stjepan Glavina 已提交
1932
                      &mut is_less);
1933 1934 1935 1936 1937 1938 1939
            }
            runs[r] = Run {
                start: left.start,
                len: left.len + right.len,
            };
            runs.remove(r + 1);
        }
A
Alex Crichton 已提交
1940 1941
    }

1942 1943 1944 1945 1946 1947 1948
    // Finally, exactly one run must remain in the stack.
    debug_assert!(runs.len() == 1 && runs[0].start == 0 && runs[0].len == len);

    // Examines the stack of runs and identifies the next pair of runs to merge. More specifically,
    // if `Some(r)` is returned, that means `runs[r]` and `runs[r + 1]` must be merged next. If the
    // algorithm should continue building a new run instead, `None` is returned.
    //
1949
    // TimSort is infamous for its buggy implementations, as described here:
1950 1951 1952 1953 1954 1955 1956 1957 1958
    // http://envisage-project.eu/timsort-specification-and-verification/
    //
    // The gist of the story is: we must enforce the invariants on the top four runs on the stack.
    // Enforcing them on just top three is not sufficient to ensure that the invariants will still
    // hold for *all* runs in the stack.
    //
    // This function correctly checks invariants for the top four runs. Additionally, if the top
    // run starts at index 0, it will always demand a merge operation until the stack is fully
    // collapsed, in order to complete the sort.
S
Stjepan Glavina 已提交
1959
    #[inline]
1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973
    fn collapse(runs: &[Run]) -> Option<usize> {
        let n = runs.len();
        if n >= 2 && (runs[n - 1].start == 0 ||
                      runs[n - 2].len <= runs[n - 1].len ||
                      (n >= 3 && runs[n - 3].len <= runs[n - 2].len + runs[n - 1].len) ||
                      (n >= 4 && runs[n - 4].len <= runs[n - 3].len + runs[n - 2].len)) {
            if n >= 3 && runs[n - 3].len < runs[n - 1].len {
                Some(n - 3)
            } else {
                Some(n - 2)
            }
        } else {
            None
        }
A
Alex Crichton 已提交
1974
    }
A
Aaron Turon 已提交
1975

1976 1977 1978 1979
    #[derive(Clone, Copy)]
    struct Run {
        start: usize,
        len: usize,
A
Aaron Turon 已提交
1980
    }
1981
}