2014-01-25 01:37:51 -06:00
|
|
|
|
// Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
|
2012-12-03 18:48:01 -06:00
|
|
|
|
// 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.
|
|
|
|
|
|
2013-06-18 20:22:48 -05:00
|
|
|
|
/*!
|
|
|
|
|
|
2013-12-24 10:08:28 -06:00
|
|
|
|
Utilities for vector manipulation
|
2013-09-17 21:42:07 -05:00
|
|
|
|
|
2013-09-09 11:32:35 -05:00
|
|
|
|
The `vec` module contains useful code to help work with vector values.
|
|
|
|
|
Vectors are Rust's list type. Vectors contain zero or more values of
|
|
|
|
|
homogeneous types:
|
2013-06-18 20:22:48 -05:00
|
|
|
|
|
2013-09-23 19:20:36 -05:00
|
|
|
|
```rust
|
2013-06-18 20:22:48 -05:00
|
|
|
|
let int_vector = [1,2,3];
|
|
|
|
|
let str_vector = ["one", "two", "three"];
|
2013-09-23 19:20:36 -05:00
|
|
|
|
```
|
2013-06-18 20:22:48 -05:00
|
|
|
|
|
|
|
|
|
This is a big module, but for a high-level overview:
|
|
|
|
|
|
|
|
|
|
## Structs
|
|
|
|
|
|
2014-01-14 21:32:24 -06:00
|
|
|
|
Several structs that are useful for vectors, such as `Items`, which
|
2013-06-18 20:22:48 -05:00
|
|
|
|
represents iteration over a vector.
|
|
|
|
|
|
|
|
|
|
## Traits
|
|
|
|
|
|
2013-09-09 11:32:35 -05:00
|
|
|
|
A number of traits add methods that allow you to accomplish tasks with vectors.
|
|
|
|
|
|
|
|
|
|
Traits defined for the `&[T]` type (a vector slice), have methods that can be
|
|
|
|
|
called on either owned vectors, denoted `~[T]`, or on vector slices themselves.
|
|
|
|
|
These traits include `ImmutableVector`, and `MutableVector` for the `&mut [T]`
|
|
|
|
|
case.
|
|
|
|
|
|
|
|
|
|
An example is the method `.slice(a, b)` that returns an immutable "view" into
|
|
|
|
|
a vector or a vector slice from the index interval `[a, b)`:
|
|
|
|
|
|
2013-09-23 19:20:36 -05:00
|
|
|
|
```rust
|
2013-09-09 11:32:35 -05:00
|
|
|
|
let numbers = [0, 1, 2];
|
|
|
|
|
let last_numbers = numbers.slice(1, 3);
|
|
|
|
|
// last_numbers is now &[1, 2]
|
2013-09-23 19:20:36 -05:00
|
|
|
|
```
|
2013-09-09 11:32:35 -05:00
|
|
|
|
|
|
|
|
|
Traits defined for the `~[T]` type, like `OwnedVector`, can only be called
|
|
|
|
|
on such vectors. These methods deal with adding elements or otherwise changing
|
|
|
|
|
the allocation of the vector.
|
|
|
|
|
|
|
|
|
|
An example is the method `.push(element)` that will add an element at the end
|
|
|
|
|
of the vector:
|
|
|
|
|
|
2013-09-23 19:20:36 -05:00
|
|
|
|
```rust
|
2013-09-09 11:32:35 -05:00
|
|
|
|
let mut numbers = ~[0, 1, 2];
|
|
|
|
|
numbers.push(7);
|
|
|
|
|
// numbers is now ~[0, 1, 2, 7];
|
2013-09-23 19:20:36 -05:00
|
|
|
|
```
|
2013-06-18 20:22:48 -05:00
|
|
|
|
|
|
|
|
|
## Implementations of other traits
|
|
|
|
|
|
2013-09-09 11:32:35 -05:00
|
|
|
|
Vectors are a very useful type, and so there's several implementations of
|
|
|
|
|
traits from other modules. Some notable examples:
|
2013-06-18 20:22:48 -05:00
|
|
|
|
|
|
|
|
|
* `Clone`
|
2013-09-09 11:32:35 -05:00
|
|
|
|
* `Eq`, `Ord`, `TotalEq`, `TotalOrd` -- vectors can be compared,
|
|
|
|
|
if the element type defines the corresponding trait.
|
2013-06-18 20:22:48 -05:00
|
|
|
|
|
2013-09-09 11:32:35 -05:00
|
|
|
|
## Iteration
|
|
|
|
|
|
|
|
|
|
The method `iter()` returns an iteration value for a vector or a vector slice.
|
2014-01-07 20:49:13 -06:00
|
|
|
|
The iterator yields references to the vector's elements, so if the element
|
2013-09-09 11:32:35 -05:00
|
|
|
|
type of the vector is `int`, the element type of the iterator is `&int`.
|
|
|
|
|
|
2013-09-23 19:20:36 -05:00
|
|
|
|
```rust
|
2013-09-09 11:32:35 -05:00
|
|
|
|
let numbers = [0, 1, 2];
|
|
|
|
|
for &x in numbers.iter() {
|
|
|
|
|
println!("{} is a number!", x);
|
|
|
|
|
}
|
2013-09-23 19:20:36 -05:00
|
|
|
|
```
|
2013-06-18 20:22:48 -05:00
|
|
|
|
|
2013-09-09 11:32:35 -05:00
|
|
|
|
* `.rev_iter()` returns an iterator with the same values as `.iter()`,
|
|
|
|
|
but going in the reverse order, starting with the back element.
|
|
|
|
|
* `.mut_iter()` returns an iterator that allows modifying each value.
|
|
|
|
|
* `.move_iter()` converts an owned vector into an iterator that
|
|
|
|
|
moves out a value from the vector each iteration.
|
|
|
|
|
* Further iterators exist that split, chunk or permute the vector.
|
2013-06-18 20:22:48 -05:00
|
|
|
|
|
2013-09-09 11:32:35 -05:00
|
|
|
|
## Function definitions
|
2013-06-18 20:22:48 -05:00
|
|
|
|
|
2013-09-09 11:32:35 -05:00
|
|
|
|
There are a number of free functions that create or take vectors, for example:
|
2013-06-18 20:22:48 -05:00
|
|
|
|
|
2013-09-09 11:32:35 -05:00
|
|
|
|
* Creating a vector, like `from_elem` and `from_fn`
|
|
|
|
|
* Creating a vector with a given size: `with_capacity`
|
|
|
|
|
* Modifying a vector and returning it, like `append`
|
|
|
|
|
* Operations on paired elements, like `unzip`.
|
2013-06-18 20:22:48 -05:00
|
|
|
|
|
|
|
|
|
*/
|
2012-03-15 20:58:14 -05:00
|
|
|
|
|
2012-09-28 00:20:47 -05:00
|
|
|
|
#[warn(non_camel_case_types)];
|
|
|
|
|
|
2012-12-23 16:41:37 -06:00
|
|
|
|
use cast;
|
2014-02-14 17:42:01 -06:00
|
|
|
|
use cast::transmute;
|
2013-12-16 04:26:25 -06:00
|
|
|
|
use ops::Drop;
|
2013-08-25 22:34:43 -05:00
|
|
|
|
use clone::{Clone, DeepClone};
|
2013-04-17 16:19:25 -05:00
|
|
|
|
use container::{Container, Mutable};
|
2013-07-17 14:32:49 -05:00
|
|
|
|
use cmp::{Eq, TotalOrd, Ordering, Less, Equal, Greater};
|
2013-07-02 14:47:32 -05:00
|
|
|
|
use cmp;
|
2013-09-09 21:32:56 -05:00
|
|
|
|
use default::Default;
|
2014-02-14 12:03:53 -06:00
|
|
|
|
use fmt;
|
2013-09-08 10:01:16 -05:00
|
|
|
|
use iter::*;
|
2014-02-16 14:20:01 -06:00
|
|
|
|
use num::{CheckedAdd, Saturating, checked_next_power_of_two, div_rem};
|
2013-01-08 21:37:25 -06:00
|
|
|
|
use option::{None, Option, Some};
|
2012-12-23 16:41:37 -06:00
|
|
|
|
use ptr;
|
2013-06-03 12:50:29 -05:00
|
|
|
|
use ptr::RawPtr;
|
2013-12-16 04:26:25 -06:00
|
|
|
|
use rt::global_heap::{malloc_raw, realloc_raw, exchange_free};
|
2014-02-14 12:03:53 -06:00
|
|
|
|
use result::{Ok, Err};
|
2013-10-16 20:34:01 -05:00
|
|
|
|
use mem;
|
|
|
|
|
use mem::size_of;
|
2014-01-22 13:03:02 -06:00
|
|
|
|
use kinds::marker;
|
2012-12-23 16:41:37 -06:00
|
|
|
|
use uint;
|
2014-02-07 05:33:11 -06:00
|
|
|
|
use unstable::finally::try_finally;
|
2014-02-16 02:04:33 -06:00
|
|
|
|
use raw::{Repr, Slice, Vec};
|
2011-12-13 18:25:51 -06:00
|
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
|
/**
|
2013-04-30 04:39:16 -05:00
|
|
|
|
* Creates and initializes an owned vector.
|
2012-07-04 16:53:12 -05:00
|
|
|
|
*
|
2013-04-30 04:39:16 -05:00
|
|
|
|
* Creates an owned vector of size `n_elts` and initializes the elements
|
2012-07-04 16:53:12 -05:00
|
|
|
|
* to the value returned by the function `op`.
|
|
|
|
|
*/
|
2013-11-18 23:15:42 -06:00
|
|
|
|
pub fn from_fn<T>(n_elts: uint, op: |uint| -> T) -> ~[T] {
|
2012-10-05 16:58:42 -05:00
|
|
|
|
unsafe {
|
|
|
|
|
let mut v = with_capacity(n_elts);
|
2013-12-15 06:35:12 -06:00
|
|
|
|
let p = v.as_mut_ptr();
|
2014-02-07 05:33:11 -06:00
|
|
|
|
let mut i = 0;
|
|
|
|
|
try_finally(
|
|
|
|
|
&mut i, (),
|
|
|
|
|
|i, ()| while *i < n_elts {
|
|
|
|
|
mem::move_val_init(
|
2014-02-10 15:50:42 -06:00
|
|
|
|
&mut(*p.offset(*i as int)),
|
2014-02-07 05:33:11 -06:00
|
|
|
|
op(*i));
|
|
|
|
|
*i += 1u;
|
|
|
|
|
},
|
|
|
|
|
|i| v.set_len(*i));
|
2013-03-09 15:41:43 -06:00
|
|
|
|
v
|
2012-10-05 16:58:42 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
2011-12-13 18:25:51 -06:00
|
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
|
/**
|
2013-04-30 04:39:16 -05:00
|
|
|
|
* Creates and initializes an owned vector.
|
2012-07-04 16:53:12 -05:00
|
|
|
|
*
|
2013-04-30 04:39:16 -05:00
|
|
|
|
* Creates an owned vector of size `n_elts` and initializes the elements
|
2012-07-04 16:53:12 -05:00
|
|
|
|
* to the value `t`.
|
|
|
|
|
*/
|
2013-07-02 14:47:32 -05:00
|
|
|
|
pub fn from_elem<T:Clone>(n_elts: uint, t: T) -> ~[T] {
|
2013-06-14 18:58:55 -05:00
|
|
|
|
// FIXME (#7136): manually inline from_fn for 2x plus speedup (sadly very
|
|
|
|
|
// important, from_elem is a bottleneck in borrowck!). Unfortunately it
|
|
|
|
|
// still is substantially slower than using the unsafe
|
|
|
|
|
// vec::with_capacity/ptr::set_memory for primitive types.
|
2013-05-31 23:55:19 -05:00
|
|
|
|
unsafe {
|
|
|
|
|
let mut v = with_capacity(n_elts);
|
2013-12-15 06:35:12 -06:00
|
|
|
|
let p = v.as_mut_ptr();
|
2013-07-27 16:30:29 -05:00
|
|
|
|
let mut i = 0u;
|
2014-02-07 05:33:11 -06:00
|
|
|
|
try_finally(
|
|
|
|
|
&mut i, (),
|
|
|
|
|
|i, ()| while *i < n_elts {
|
|
|
|
|
mem::move_val_init(
|
2014-02-10 15:50:42 -06:00
|
|
|
|
&mut(*p.offset(*i as int)),
|
2014-02-07 05:33:11 -06:00
|
|
|
|
t.clone());
|
|
|
|
|
*i += 1u;
|
|
|
|
|
},
|
|
|
|
|
|i| v.set_len(*i));
|
2013-05-31 23:55:19 -05:00
|
|
|
|
v
|
|
|
|
|
}
|
2011-12-13 18:25:51 -06:00
|
|
|
|
}
|
|
|
|
|
|
2013-04-24 21:33:13 -05:00
|
|
|
|
/// Creates a new vector with a capacity of `capacity`
|
2013-07-23 11:54:28 -05:00
|
|
|
|
#[inline]
|
2014-01-14 01:46:58 -06:00
|
|
|
|
pub fn with_capacity<T>(capacity: uint) -> ~[T] {
|
|
|
|
|
unsafe {
|
|
|
|
|
let alloc = capacity * mem::nonzero_size_of::<T>();
|
|
|
|
|
let size = alloc + mem::size_of::<Vec<()>>();
|
|
|
|
|
if alloc / mem::nonzero_size_of::<T>() != capacity || size < alloc {
|
|
|
|
|
fail!("vector size is too large: {}", capacity);
|
|
|
|
|
}
|
|
|
|
|
let ptr = malloc_raw(size) as *mut Vec<()>;
|
|
|
|
|
(*ptr).alloc = alloc;
|
|
|
|
|
(*ptr).fill = 0;
|
2014-02-14 17:42:01 -06:00
|
|
|
|
transmute(ptr)
|
2014-01-14 01:46:58 -06:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-07-17 18:31:19 -05:00
|
|
|
|
/**
|
|
|
|
|
* Builds a vector by calling a provided function with an argument
|
|
|
|
|
* function that pushes an element to the back of a vector.
|
2013-09-09 22:50:11 -05:00
|
|
|
|
* The initial capacity for the vector may optionally be specified.
|
2012-07-17 18:31:19 -05:00
|
|
|
|
*
|
|
|
|
|
* # Arguments
|
|
|
|
|
*
|
2013-09-09 22:50:11 -05:00
|
|
|
|
* * size - An option, maybe containing initial size of the vector to reserve
|
2013-03-25 17:34:15 -05:00
|
|
|
|
* * builder - A function that will construct the vector. It receives
|
2012-07-17 18:31:19 -05:00
|
|
|
|
* as an argument a function that will push an element
|
|
|
|
|
* onto the vector being constructed.
|
|
|
|
|
*/
|
2013-06-18 16:45:18 -05:00
|
|
|
|
#[inline]
|
2013-11-18 23:15:42 -06:00
|
|
|
|
pub fn build<A>(size: Option<uint>, builder: |push: |v: A||) -> ~[A] {
|
2013-09-09 21:57:08 -05:00
|
|
|
|
let mut vec = with_capacity(size.unwrap_or(4));
|
2013-04-08 15:50:34 -05:00
|
|
|
|
builder(|x| vec.push(x));
|
2012-12-12 17:38:50 -06:00
|
|
|
|
vec
|
2012-07-17 18:31:19 -05:00
|
|
|
|
}
|
|
|
|
|
|
2014-01-15 13:39:08 -06:00
|
|
|
|
/**
|
|
|
|
|
* Converts a pointer to A into a slice of length 1 (without copying).
|
|
|
|
|
*/
|
|
|
|
|
pub fn ref_slice<'a, A>(s: &'a A) -> &'a [A] {
|
|
|
|
|
unsafe {
|
2014-02-14 17:42:01 -06:00
|
|
|
|
transmute(Slice { data: s, len: 1 })
|
2014-01-15 13:39:08 -06:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Converts a pointer to A into a slice of length 1 (without copying).
|
|
|
|
|
*/
|
|
|
|
|
pub fn mut_ref_slice<'a, A>(s: &'a mut A) -> &'a mut [A] {
|
|
|
|
|
unsafe {
|
2014-02-14 17:42:01 -06:00
|
|
|
|
let ptr: *A = transmute(s);
|
|
|
|
|
transmute(Slice { data: ptr, len: 1 })
|
2014-01-15 13:39:08 -06:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-07-02 23:54:11 -05:00
|
|
|
|
/// An iterator over the slices of a vector separated by elements that
|
|
|
|
|
/// match a predicate function.
|
2014-01-14 21:32:24 -06:00
|
|
|
|
pub struct Splits<'a, T> {
|
2013-12-10 01:16:18 -06:00
|
|
|
|
priv v: &'a [T],
|
2013-07-02 23:54:11 -05:00
|
|
|
|
priv n: uint,
|
2013-12-10 01:16:18 -06:00
|
|
|
|
priv pred: 'a |t: &T| -> bool,
|
2013-07-02 23:54:11 -05:00
|
|
|
|
priv finished: bool
|
|
|
|
|
}
|
2011-12-13 18:25:51 -06:00
|
|
|
|
|
2014-01-14 21:32:24 -06:00
|
|
|
|
impl<'a, T> Iterator<&'a [T]> for Splits<'a, T> {
|
2013-08-05 21:20:37 -05:00
|
|
|
|
#[inline]
|
2013-12-10 01:16:18 -06:00
|
|
|
|
fn next(&mut self) -> Option<&'a [T]> {
|
2013-07-02 23:54:11 -05:00
|
|
|
|
if self.finished { return None; }
|
2013-01-29 00:44:59 -06:00
|
|
|
|
|
2013-07-02 23:54:11 -05:00
|
|
|
|
if self.n == 0 {
|
|
|
|
|
self.finished = true;
|
|
|
|
|
return Some(self.v);
|
|
|
|
|
}
|
2012-01-26 20:13:43 -06:00
|
|
|
|
|
2013-07-04 21:13:26 -05:00
|
|
|
|
match self.v.iter().position(|x| (self.pred)(x)) {
|
2013-07-02 23:54:11 -05:00
|
|
|
|
None => {
|
|
|
|
|
self.finished = true;
|
|
|
|
|
Some(self.v)
|
|
|
|
|
}
|
|
|
|
|
Some(idx) => {
|
|
|
|
|
let ret = Some(self.v.slice(0, idx));
|
|
|
|
|
self.v = self.v.slice(idx + 1, self.v.len());
|
|
|
|
|
self.n -= 1;
|
|
|
|
|
ret
|
2012-09-26 19:33:34 -05:00
|
|
|
|
}
|
2012-01-26 20:13:43 -06:00
|
|
|
|
}
|
|
|
|
|
}
|
2013-08-05 21:20:37 -05:00
|
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
|
fn size_hint(&self) -> (uint, Option<uint>) {
|
|
|
|
|
if self.finished {
|
|
|
|
|
return (0, Some(0))
|
|
|
|
|
}
|
|
|
|
|
// if the predicate doesn't match anything, we yield one slice
|
|
|
|
|
// if it matches every element, we yield N+1 empty slices where
|
|
|
|
|
// N is either the number of elements or the number of splits.
|
|
|
|
|
match (self.v.len(), self.n) {
|
|
|
|
|
(0,_) => (1, Some(1)),
|
|
|
|
|
(_,0) => (1, Some(1)),
|
|
|
|
|
(l,n) => (1, cmp::min(l,n).checked_add(&1u))
|
|
|
|
|
}
|
|
|
|
|
}
|
2012-01-26 20:13:43 -06:00
|
|
|
|
}
|
|
|
|
|
|
2013-07-02 23:54:11 -05:00
|
|
|
|
/// An iterator over the slices of a vector separated by elements that
|
|
|
|
|
/// match a predicate function, from back to front.
|
2014-01-14 21:32:24 -06:00
|
|
|
|
pub struct RevSplits<'a, T> {
|
2013-12-10 01:16:18 -06:00
|
|
|
|
priv v: &'a [T],
|
2013-07-02 23:54:11 -05:00
|
|
|
|
priv n: uint,
|
2013-12-10 01:16:18 -06:00
|
|
|
|
priv pred: 'a |t: &T| -> bool,
|
2013-07-02 23:54:11 -05:00
|
|
|
|
priv finished: bool
|
2012-01-26 20:13:43 -06:00
|
|
|
|
}
|
|
|
|
|
|
2014-01-14 21:32:24 -06:00
|
|
|
|
impl<'a, T> Iterator<&'a [T]> for RevSplits<'a, T> {
|
2013-08-05 21:20:37 -05:00
|
|
|
|
#[inline]
|
2013-12-10 01:16:18 -06:00
|
|
|
|
fn next(&mut self) -> Option<&'a [T]> {
|
2013-07-02 23:54:11 -05:00
|
|
|
|
if self.finished { return None; }
|
2012-01-26 20:13:43 -06:00
|
|
|
|
|
2013-07-02 23:54:11 -05:00
|
|
|
|
if self.n == 0 {
|
|
|
|
|
self.finished = true;
|
|
|
|
|
return Some(self.v);
|
2012-01-26 20:13:43 -06:00
|
|
|
|
}
|
|
|
|
|
|
2014-02-07 13:48:31 -06:00
|
|
|
|
let pred = &mut self.pred;
|
|
|
|
|
match self.v.iter().rposition(|x| (*pred)(x)) {
|
2013-07-02 23:54:11 -05:00
|
|
|
|
None => {
|
|
|
|
|
self.finished = true;
|
|
|
|
|
Some(self.v)
|
|
|
|
|
}
|
|
|
|
|
Some(idx) => {
|
|
|
|
|
let ret = Some(self.v.slice(idx + 1, self.v.len()));
|
|
|
|
|
self.v = self.v.slice(0, idx);
|
|
|
|
|
self.n -= 1;
|
|
|
|
|
ret
|
2012-09-26 19:33:34 -05:00
|
|
|
|
}
|
2012-01-26 20:13:43 -06:00
|
|
|
|
}
|
|
|
|
|
}
|
2013-08-05 21:20:37 -05:00
|
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
|
fn size_hint(&self) -> (uint, Option<uint>) {
|
|
|
|
|
if self.finished {
|
|
|
|
|
return (0, Some(0))
|
|
|
|
|
}
|
|
|
|
|
match (self.v.len(), self.n) {
|
|
|
|
|
(0,_) => (1, Some(1)),
|
|
|
|
|
(_,0) => (1, Some(1)),
|
|
|
|
|
(l,n) => (1, cmp::min(l,n).checked_add(&1u))
|
|
|
|
|
}
|
|
|
|
|
}
|
2012-01-26 20:13:43 -06:00
|
|
|
|
}
|
2011-12-13 18:25:51 -06:00
|
|
|
|
|
|
|
|
|
// Appending
|
2013-05-28 16:35:52 -05:00
|
|
|
|
|
|
|
|
|
/// Iterates over the `rhs` vector, copying each element and appending it to the
|
|
|
|
|
/// `lhs`. Afterwards, the `lhs` is then returned for use again.
|
2013-06-18 16:45:18 -05:00
|
|
|
|
#[inline]
|
2013-07-02 14:47:32 -05:00
|
|
|
|
pub fn append<T:Clone>(lhs: ~[T], rhs: &[T]) -> ~[T] {
|
2012-12-12 17:38:50 -06:00
|
|
|
|
let mut v = lhs;
|
2013-04-08 15:50:34 -05:00
|
|
|
|
v.push_all(rhs);
|
2012-12-12 17:38:50 -06:00
|
|
|
|
v
|
2012-06-13 18:14:01 -05:00
|
|
|
|
}
|
|
|
|
|
|
2013-05-28 16:35:52 -05:00
|
|
|
|
/// Appends one element to the vector provided. The vector itself is then
|
|
|
|
|
/// returned for use again.
|
2013-06-18 16:45:18 -05:00
|
|
|
|
#[inline]
|
2013-03-21 23:20:48 -05:00
|
|
|
|
pub fn append_one<T>(lhs: ~[T], x: T) -> ~[T] {
|
2012-12-12 17:38:50 -06:00
|
|
|
|
let mut v = lhs;
|
2013-04-08 15:50:34 -05:00
|
|
|
|
v.push(x);
|
2012-12-12 17:38:50 -06:00
|
|
|
|
v
|
2012-06-28 15:52:13 -05:00
|
|
|
|
}
|
|
|
|
|
|
2011-12-13 18:25:51 -06:00
|
|
|
|
// Functional utilities
|
|
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
|
/**
|
|
|
|
|
* Apply a function to each element of a vector and return a concatenation
|
|
|
|
|
* of each result vector
|
|
|
|
|
*/
|
2013-11-18 23:15:42 -06:00
|
|
|
|
pub fn flat_map<T, U>(v: &[T], f: |t: &T| -> ~[U]) -> ~[U] {
|
2012-06-29 18:26:56 -05:00
|
|
|
|
let mut result = ~[];
|
2013-08-03 11:45:23 -05:00
|
|
|
|
for elem in v.iter() { result.push_all_move(f(elem)); }
|
2012-12-12 17:38:50 -06:00
|
|
|
|
result
|
2012-03-02 16:36:22 -06:00
|
|
|
|
}
|
|
|
|
|
|
2013-06-02 22:19:37 -05:00
|
|
|
|
#[allow(missing_doc)]
|
|
|
|
|
pub trait VectorVector<T> {
|
2013-06-14 21:56:41 -05:00
|
|
|
|
// FIXME #5898: calling these .concat and .connect conflicts with
|
|
|
|
|
// StrVector::con{cat,nect}, since they have generic contents.
|
2013-09-27 21:15:40 -05:00
|
|
|
|
/// Flattens a vector of vectors of T into a single vector of T.
|
2013-08-09 03:25:24 -05:00
|
|
|
|
fn concat_vec(&self) -> ~[T];
|
2013-06-02 22:19:37 -05:00
|
|
|
|
|
|
|
|
|
/// Concatenate a vector of vectors, placing a given separator between each.
|
2013-09-27 21:15:40 -05:00
|
|
|
|
fn connect_vec(&self, sep: &T) -> ~[T];
|
2013-06-02 22:19:37 -05:00
|
|
|
|
}
|
|
|
|
|
|
2013-12-10 01:16:18 -06:00
|
|
|
|
impl<'a, T: Clone, V: Vector<T>> VectorVector<T> for &'a [V] {
|
2013-08-09 03:25:24 -05:00
|
|
|
|
fn concat_vec(&self) -> ~[T] {
|
2013-09-27 21:15:40 -05:00
|
|
|
|
let size = self.iter().fold(0u, |acc, v| acc + v.as_slice().len());
|
|
|
|
|
let mut result = with_capacity(size);
|
|
|
|
|
for v in self.iter() {
|
|
|
|
|
result.push_all(v.as_slice())
|
|
|
|
|
}
|
|
|
|
|
result
|
2013-06-02 22:19:37 -05:00
|
|
|
|
}
|
|
|
|
|
|
2013-08-09 03:25:24 -05:00
|
|
|
|
fn connect_vec(&self, sep: &T) -> ~[T] {
|
2013-09-27 21:15:40 -05:00
|
|
|
|
let size = self.iter().fold(0u, |acc, v| acc + v.as_slice().len());
|
|
|
|
|
let mut result = with_capacity(size + self.len());
|
2013-06-02 22:19:37 -05:00
|
|
|
|
let mut first = true;
|
2013-09-27 21:15:40 -05:00
|
|
|
|
for v in self.iter() {
|
|
|
|
|
if first { first = false } else { result.push(sep.clone()) }
|
|
|
|
|
result.push_all(v.as_slice())
|
2013-06-02 22:19:37 -05:00
|
|
|
|
}
|
2013-09-27 21:15:40 -05:00
|
|
|
|
result
|
2012-01-28 17:41:53 -06:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
|
/**
|
2013-09-08 21:46:32 -05:00
|
|
|
|
* Convert an iterator of pairs into a pair of vectors.
|
2012-07-04 16:53:12 -05:00
|
|
|
|
*
|
2012-08-23 19:51:34 -05:00
|
|
|
|
* Returns a tuple containing two vectors where the i-th element of the first
|
2013-09-08 21:46:32 -05:00
|
|
|
|
* vector contains the first element of the i-th tuple of the input iterator,
|
2012-08-23 19:51:34 -05:00
|
|
|
|
* and the i-th element of the second vector contains the second element
|
2013-09-08 21:46:32 -05:00
|
|
|
|
* of the i-th tuple of the input iterator.
|
2012-08-23 19:51:34 -05:00
|
|
|
|
*/
|
2013-09-08 21:46:32 -05:00
|
|
|
|
pub fn unzip<T, U, V: Iterator<(T, U)>>(mut iter: V) -> (~[T], ~[U]) {
|
|
|
|
|
let (lo, _) = iter.size_hint();
|
|
|
|
|
let mut ts = with_capacity(lo);
|
|
|
|
|
let mut us = with_capacity(lo);
|
|
|
|
|
for (t, u) in iter {
|
2013-04-08 15:50:34 -05:00
|
|
|
|
ts.push(t);
|
|
|
|
|
us.push(u);
|
2012-08-23 19:51:34 -05:00
|
|
|
|
}
|
2012-12-12 17:38:50 -06:00
|
|
|
|
(ts, us)
|
2012-08-23 19:51:34 -05:00
|
|
|
|
}
|
|
|
|
|
|
std::vec: Replace each_permutation with a new Permutations iterator
Introduce ElementSwaps and Permutations. ElementSwaps is an iterator
that for a given sequence length yields the element swaps needed
to visit each possible permutation of the sequence in turn.
We use an algorithm that generates a sequence such that each permutation
is only one swap apart.
let mut v = [1, 2, 3];
for perm in v.permutations_iter() {
// yields 1 2 3 | 1 3 2 | 3 1 2 | 3 2 1 | 2 3 1 | 2 1 3
}
The `.permutations_iter()` yields clones of the input vector for each
permutation.
If a copyless traversal is needed, it can be constructed with
`ElementSwaps`:
for (a, b) in ElementSwaps::new(3) {
// yields (2, 1), (1, 0), (2, 1) ...
v.swap(a, b);
// ..
}
2013-09-08 18:29:07 -05:00
|
|
|
|
/// An Iterator that yields the element swaps needed to produce
|
|
|
|
|
/// a sequence of all possible permutations for an indexed sequence of
|
|
|
|
|
/// elements. Each permutation is only a single swap apart.
|
|
|
|
|
///
|
|
|
|
|
/// The Steinhaus–Johnson–Trotter algorithm is used.
|
|
|
|
|
///
|
2013-12-14 23:26:09 -06:00
|
|
|
|
/// Generates even and odd permutations alternately.
|
std::vec: Replace each_permutation with a new Permutations iterator
Introduce ElementSwaps and Permutations. ElementSwaps is an iterator
that for a given sequence length yields the element swaps needed
to visit each possible permutation of the sequence in turn.
We use an algorithm that generates a sequence such that each permutation
is only one swap apart.
let mut v = [1, 2, 3];
for perm in v.permutations_iter() {
// yields 1 2 3 | 1 3 2 | 3 1 2 | 3 2 1 | 2 3 1 | 2 1 3
}
The `.permutations_iter()` yields clones of the input vector for each
permutation.
If a copyless traversal is needed, it can be constructed with
`ElementSwaps`:
for (a, b) in ElementSwaps::new(3) {
// yields (2, 1), (1, 0), (2, 1) ...
v.swap(a, b);
// ..
}
2013-09-08 18:29:07 -05:00
|
|
|
|
///
|
|
|
|
|
/// The last generated swap is always (0, 1), and it returns the
|
|
|
|
|
/// sequence to its initial order.
|
|
|
|
|
pub struct ElementSwaps {
|
|
|
|
|
priv sdir: ~[SizeDirection],
|
|
|
|
|
/// If true, emit the last swap that returns the sequence to initial state
|
|
|
|
|
priv emit_reset: bool,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl ElementSwaps {
|
|
|
|
|
/// Create an `ElementSwaps` iterator for a sequence of `length` elements
|
|
|
|
|
pub fn new(length: uint) -> ElementSwaps {
|
|
|
|
|
// Initialize `sdir` with a direction that position should move in
|
|
|
|
|
// (all negative at the beginning) and the `size` of the
|
|
|
|
|
// element (equal to the original index).
|
|
|
|
|
ElementSwaps{
|
|
|
|
|
emit_reset: true,
|
|
|
|
|
sdir: range(0, length)
|
|
|
|
|
.map(|i| SizeDirection{ size: i, dir: Neg })
|
|
|
|
|
.to_owned_vec()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
enum Direction { Pos, Neg }
|
|
|
|
|
|
|
|
|
|
/// An Index and Direction together
|
|
|
|
|
struct SizeDirection {
|
|
|
|
|
size: uint,
|
|
|
|
|
dir: Direction,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl Iterator<(uint, uint)> for ElementSwaps {
|
|
|
|
|
#[inline]
|
|
|
|
|
fn next(&mut self) -> Option<(uint, uint)> {
|
|
|
|
|
fn new_pos(i: uint, s: Direction) -> uint {
|
|
|
|
|
i + match s { Pos => 1, Neg => -1 }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Find the index of the largest mobile element:
|
|
|
|
|
// The direction should point into the vector, and the
|
|
|
|
|
// swap should be with a smaller `size` element.
|
|
|
|
|
let max = self.sdir.iter().map(|&x| x).enumerate()
|
|
|
|
|
.filter(|&(i, sd)|
|
|
|
|
|
new_pos(i, sd.dir) < self.sdir.len() &&
|
|
|
|
|
self.sdir[new_pos(i, sd.dir)].size < sd.size)
|
|
|
|
|
.max_by(|&(_, sd)| sd.size);
|
|
|
|
|
match max {
|
|
|
|
|
Some((i, sd)) => {
|
|
|
|
|
let j = new_pos(i, sd.dir);
|
|
|
|
|
self.sdir.swap(i, j);
|
|
|
|
|
|
|
|
|
|
// Swap the direction of each larger SizeDirection
|
|
|
|
|
for x in self.sdir.mut_iter() {
|
|
|
|
|
if x.size > sd.size {
|
|
|
|
|
x.dir = match x.dir { Pos => Neg, Neg => Pos };
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
Some((i, j))
|
|
|
|
|
},
|
|
|
|
|
None => if self.emit_reset && self.sdir.len() > 1 {
|
|
|
|
|
self.emit_reset = false;
|
|
|
|
|
Some((0, 1))
|
|
|
|
|
} else {
|
|
|
|
|
None
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// An Iterator that uses `ElementSwaps` to iterate through
|
|
|
|
|
/// all possible permutations of a vector.
|
|
|
|
|
///
|
|
|
|
|
/// The first iteration yields a clone of the vector as it is,
|
|
|
|
|
/// then each successive element is the vector with one
|
|
|
|
|
/// swap applied.
|
|
|
|
|
///
|
2013-12-14 23:26:09 -06:00
|
|
|
|
/// Generates even and odd permutations alternately.
|
std::vec: Replace each_permutation with a new Permutations iterator
Introduce ElementSwaps and Permutations. ElementSwaps is an iterator
that for a given sequence length yields the element swaps needed
to visit each possible permutation of the sequence in turn.
We use an algorithm that generates a sequence such that each permutation
is only one swap apart.
let mut v = [1, 2, 3];
for perm in v.permutations_iter() {
// yields 1 2 3 | 1 3 2 | 3 1 2 | 3 2 1 | 2 3 1 | 2 1 3
}
The `.permutations_iter()` yields clones of the input vector for each
permutation.
If a copyless traversal is needed, it can be constructed with
`ElementSwaps`:
for (a, b) in ElementSwaps::new(3) {
// yields (2, 1), (1, 0), (2, 1) ...
v.swap(a, b);
// ..
}
2013-09-08 18:29:07 -05:00
|
|
|
|
pub struct Permutations<T> {
|
|
|
|
|
priv swaps: ElementSwaps,
|
|
|
|
|
priv v: ~[T],
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl<T: Clone> Iterator<~[T]> for Permutations<T> {
|
|
|
|
|
#[inline]
|
|
|
|
|
fn next(&mut self) -> Option<~[T]> {
|
|
|
|
|
match self.swaps.next() {
|
|
|
|
|
None => None,
|
|
|
|
|
Some((a, b)) => {
|
|
|
|
|
let elt = self.v.clone();
|
|
|
|
|
self.v.swap(a, b);
|
|
|
|
|
Some(elt)
|
|
|
|
|
}
|
2012-06-27 17:21:50 -05:00
|
|
|
|
}
|
2011-12-13 18:25:51 -06:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-07-03 00:47:58 -05:00
|
|
|
|
/// An iterator over the (overlapping) slices of length `size` within
|
|
|
|
|
/// a vector.
|
2013-08-03 12:40:20 -05:00
|
|
|
|
#[deriving(Clone)]
|
2014-01-14 21:32:24 -06:00
|
|
|
|
pub struct Windows<'a, T> {
|
2013-12-10 01:16:18 -06:00
|
|
|
|
priv v: &'a [T],
|
2013-07-03 00:47:58 -05:00
|
|
|
|
priv size: uint
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-14 21:32:24 -06:00
|
|
|
|
impl<'a, T> Iterator<&'a [T]> for Windows<'a, T> {
|
2013-08-05 21:20:37 -05:00
|
|
|
|
#[inline]
|
2013-12-10 01:16:18 -06:00
|
|
|
|
fn next(&mut self) -> Option<&'a [T]> {
|
2013-07-03 00:47:58 -05:00
|
|
|
|
if self.size > self.v.len() {
|
|
|
|
|
None
|
|
|
|
|
} else {
|
|
|
|
|
let ret = Some(self.v.slice(0, self.size));
|
|
|
|
|
self.v = self.v.slice(1, self.v.len());
|
|
|
|
|
ret
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-08-05 21:20:37 -05:00
|
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
|
fn size_hint(&self) -> (uint, Option<uint>) {
|
|
|
|
|
if self.size > self.v.len() {
|
|
|
|
|
(0, Some(0))
|
|
|
|
|
} else {
|
|
|
|
|
let x = self.v.len() - self.size;
|
|
|
|
|
(x.saturating_add(1), x.checked_add(&1u))
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-07-03 00:47:58 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// An iterator over a vector in (non-overlapping) chunks (`size`
|
|
|
|
|
/// elements at a time).
|
2013-08-03 12:40:20 -05:00
|
|
|
|
///
|
|
|
|
|
/// When the vector len is not evenly divided by the chunk size,
|
2013-08-16 00:41:28 -05:00
|
|
|
|
/// the last slice of the iteration will be the remainder.
|
2013-08-03 12:40:20 -05:00
|
|
|
|
#[deriving(Clone)]
|
2014-01-14 21:32:24 -06:00
|
|
|
|
pub struct Chunks<'a, T> {
|
2013-12-10 01:16:18 -06:00
|
|
|
|
priv v: &'a [T],
|
2013-07-03 00:47:58 -05:00
|
|
|
|
priv size: uint
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-14 21:32:24 -06:00
|
|
|
|
impl<'a, T> Iterator<&'a [T]> for Chunks<'a, T> {
|
2013-08-05 21:20:37 -05:00
|
|
|
|
#[inline]
|
2013-12-10 01:16:18 -06:00
|
|
|
|
fn next(&mut self) -> Option<&'a [T]> {
|
2013-08-03 12:40:20 -05:00
|
|
|
|
if self.v.len() == 0 {
|
2013-07-03 00:47:58 -05:00
|
|
|
|
None
|
|
|
|
|
} else {
|
2013-08-03 12:40:20 -05:00
|
|
|
|
let chunksz = cmp::min(self.v.len(), self.size);
|
|
|
|
|
let (fst, snd) = (self.v.slice_to(chunksz),
|
|
|
|
|
self.v.slice_from(chunksz));
|
|
|
|
|
self.v = snd;
|
|
|
|
|
Some(fst)
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-08-05 21:20:37 -05:00
|
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
|
fn size_hint(&self) -> (uint, Option<uint>) {
|
|
|
|
|
if self.v.len() == 0 {
|
|
|
|
|
(0, Some(0))
|
|
|
|
|
} else {
|
2014-02-16 14:20:01 -06:00
|
|
|
|
let (n, rem) = div_rem(self.v.len(), self.size);
|
2013-08-05 21:20:37 -05:00
|
|
|
|
let n = if rem > 0 { n+1 } else { n };
|
|
|
|
|
(n, Some(n))
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-08-03 12:40:20 -05:00
|
|
|
|
}
|
|
|
|
|
|
2014-01-14 21:32:24 -06:00
|
|
|
|
impl<'a, T> DoubleEndedIterator<&'a [T]> for Chunks<'a, T> {
|
2013-08-05 21:20:37 -05:00
|
|
|
|
#[inline]
|
2013-12-10 01:16:18 -06:00
|
|
|
|
fn next_back(&mut self) -> Option<&'a [T]> {
|
2013-08-03 12:40:20 -05:00
|
|
|
|
if self.v.len() == 0 {
|
|
|
|
|
None
|
|
|
|
|
} else {
|
|
|
|
|
let remainder = self.v.len() % self.size;
|
|
|
|
|
let chunksz = if remainder != 0 { remainder } else { self.size };
|
|
|
|
|
let (fst, snd) = (self.v.slice_to(self.v.len() - chunksz),
|
|
|
|
|
self.v.slice_from(self.v.len() - chunksz));
|
|
|
|
|
self.v = fst;
|
|
|
|
|
Some(snd)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-14 21:32:24 -06:00
|
|
|
|
impl<'a, T> RandomAccessIterator<&'a [T]> for Chunks<'a, T> {
|
2013-08-03 12:40:20 -05:00
|
|
|
|
#[inline]
|
|
|
|
|
fn indexable(&self) -> uint {
|
|
|
|
|
self.v.len()/self.size + if self.v.len() % self.size != 0 { 1 } else { 0 }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[inline]
|
2013-12-10 01:16:18 -06:00
|
|
|
|
fn idx(&self, index: uint) -> Option<&'a [T]> {
|
2013-08-03 12:40:20 -05:00
|
|
|
|
if index < self.indexable() {
|
|
|
|
|
let lo = index * self.size;
|
2013-08-04 15:46:26 -05:00
|
|
|
|
let mut hi = lo + self.size;
|
|
|
|
|
if hi < lo || hi > self.v.len() { hi = self.v.len(); }
|
|
|
|
|
|
|
|
|
|
Some(self.v.slice(lo, hi))
|
2013-08-03 12:40:20 -05:00
|
|
|
|
} else {
|
|
|
|
|
None
|
2013-07-03 00:47:58 -05:00
|
|
|
|
}
|
2013-05-03 15:33:33 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
2012-01-23 04:41:40 -06:00
|
|
|
|
|
2012-08-27 19:15:54 -05:00
|
|
|
|
// Equality
|
|
|
|
|
|
2013-07-02 21:13:00 -05:00
|
|
|
|
#[cfg(not(test))]
|
2013-10-12 21:02:46 -05:00
|
|
|
|
#[allow(missing_doc)]
|
2013-07-02 21:13:00 -05:00
|
|
|
|
pub mod traits {
|
2013-08-08 22:49:49 -05:00
|
|
|
|
use super::*;
|
2013-07-02 14:47:32 -05:00
|
|
|
|
|
2014-01-06 18:48:51 -06:00
|
|
|
|
use container::Container;
|
2013-07-02 14:47:32 -05:00
|
|
|
|
use clone::Clone;
|
2013-08-08 15:07:21 -05:00
|
|
|
|
use cmp::{Eq, Ord, TotalEq, TotalOrd, Ordering, Equiv};
|
2013-09-08 10:01:16 -05:00
|
|
|
|
use iter::order;
|
2013-07-02 21:13:00 -05:00
|
|
|
|
use ops::Add;
|
|
|
|
|
|
2013-12-10 01:16:18 -06:00
|
|
|
|
impl<'a,T:Eq> Eq for &'a [T] {
|
|
|
|
|
fn eq(&self, other: & &'a [T]) -> bool {
|
2013-07-02 21:13:00 -05:00
|
|
|
|
self.len() == other.len() &&
|
2013-08-08 15:07:21 -05:00
|
|
|
|
order::eq(self.iter(), other.iter())
|
|
|
|
|
}
|
2013-12-10 01:16:18 -06:00
|
|
|
|
fn ne(&self, other: & &'a [T]) -> bool {
|
2013-08-08 16:07:24 -05:00
|
|
|
|
self.len() != other.len() ||
|
2013-08-08 15:07:21 -05:00
|
|
|
|
order::ne(self.iter(), other.iter())
|
2013-07-02 21:13:00 -05:00
|
|
|
|
}
|
2012-08-27 19:15:54 -05:00
|
|
|
|
}
|
|
|
|
|
|
2013-07-02 21:13:00 -05:00
|
|
|
|
impl<T:Eq> Eq for ~[T] {
|
|
|
|
|
#[inline]
|
|
|
|
|
fn eq(&self, other: &~[T]) -> bool { self.as_slice() == *other }
|
|
|
|
|
#[inline]
|
|
|
|
|
fn ne(&self, other: &~[T]) -> bool { !self.eq(other) }
|
2013-03-27 14:20:44 -05:00
|
|
|
|
}
|
2012-08-27 19:15:54 -05:00
|
|
|
|
|
2013-12-10 01:16:18 -06:00
|
|
|
|
impl<'a,T:TotalEq> TotalEq for &'a [T] {
|
|
|
|
|
fn equals(&self, other: & &'a [T]) -> bool {
|
2013-07-02 21:13:00 -05:00
|
|
|
|
self.len() == other.len() &&
|
2013-08-08 15:07:21 -05:00
|
|
|
|
order::equals(self.iter(), other.iter())
|
2013-07-02 21:13:00 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
2013-03-27 14:20:44 -05:00
|
|
|
|
|
2013-07-02 21:13:00 -05:00
|
|
|
|
impl<T:TotalEq> TotalEq for ~[T] {
|
|
|
|
|
#[inline]
|
|
|
|
|
fn equals(&self, other: &~[T]) -> bool { self.as_slice().equals(&other.as_slice()) }
|
|
|
|
|
}
|
2013-03-27 14:20:44 -05:00
|
|
|
|
|
2013-12-10 01:16:18 -06:00
|
|
|
|
impl<'a,T:Eq, V: Vector<T>> Equiv<V> for &'a [T] {
|
2013-07-02 21:13:00 -05:00
|
|
|
|
#[inline]
|
|
|
|
|
fn equiv(&self, other: &V) -> bool { self.as_slice() == other.as_slice() }
|
|
|
|
|
}
|
2013-03-04 21:43:14 -06:00
|
|
|
|
|
2013-12-10 01:16:18 -06:00
|
|
|
|
impl<'a,T:Eq, V: Vector<T>> Equiv<V> for ~[T] {
|
2013-07-02 21:13:00 -05:00
|
|
|
|
#[inline]
|
|
|
|
|
fn equiv(&self, other: &V) -> bool { self.as_slice() == other.as_slice() }
|
|
|
|
|
}
|
2012-08-27 19:15:54 -05:00
|
|
|
|
|
2013-12-10 01:16:18 -06:00
|
|
|
|
impl<'a,T:TotalOrd> TotalOrd for &'a [T] {
|
|
|
|
|
fn cmp(&self, other: & &'a [T]) -> Ordering {
|
2013-08-08 15:07:21 -05:00
|
|
|
|
order::cmp(self.iter(), other.iter())
|
2013-03-01 21:07:12 -06:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-07-02 21:13:00 -05:00
|
|
|
|
impl<T: TotalOrd> TotalOrd for ~[T] {
|
|
|
|
|
#[inline]
|
|
|
|
|
fn cmp(&self, other: &~[T]) -> Ordering { self.as_slice().cmp(&other.as_slice()) }
|
|
|
|
|
}
|
2013-03-01 21:07:12 -06:00
|
|
|
|
|
2013-12-10 01:16:18 -06:00
|
|
|
|
impl<'a, T: Eq + Ord> Ord for &'a [T] {
|
|
|
|
|
fn lt(&self, other: & &'a [T]) -> bool {
|
2013-08-08 15:07:21 -05:00
|
|
|
|
order::lt(self.iter(), other.iter())
|
2013-07-02 21:13:00 -05:00
|
|
|
|
}
|
|
|
|
|
#[inline]
|
2013-12-10 01:16:18 -06:00
|
|
|
|
fn le(&self, other: & &'a [T]) -> bool {
|
2013-08-08 15:07:21 -05:00
|
|
|
|
order::le(self.iter(), other.iter())
|
|
|
|
|
}
|
2013-07-02 21:13:00 -05:00
|
|
|
|
#[inline]
|
2013-12-10 01:16:18 -06:00
|
|
|
|
fn ge(&self, other: & &'a [T]) -> bool {
|
2013-08-08 15:07:21 -05:00
|
|
|
|
order::ge(self.iter(), other.iter())
|
|
|
|
|
}
|
2013-07-02 21:13:00 -05:00
|
|
|
|
#[inline]
|
2013-12-10 01:16:18 -06:00
|
|
|
|
fn gt(&self, other: & &'a [T]) -> bool {
|
2013-08-08 15:07:21 -05:00
|
|
|
|
order::gt(self.iter(), other.iter())
|
|
|
|
|
}
|
2013-07-02 21:13:00 -05:00
|
|
|
|
}
|
2013-03-01 21:07:12 -06:00
|
|
|
|
|
2013-08-08 15:07:21 -05:00
|
|
|
|
impl<T: Eq + Ord> Ord for ~[T] {
|
2013-07-02 21:13:00 -05:00
|
|
|
|
#[inline]
|
|
|
|
|
fn lt(&self, other: &~[T]) -> bool { self.as_slice() < other.as_slice() }
|
|
|
|
|
#[inline]
|
|
|
|
|
fn le(&self, other: &~[T]) -> bool { self.as_slice() <= other.as_slice() }
|
|
|
|
|
#[inline]
|
|
|
|
|
fn ge(&self, other: &~[T]) -> bool { self.as_slice() >= other.as_slice() }
|
|
|
|
|
#[inline]
|
|
|
|
|
fn gt(&self, other: &~[T]) -> bool { self.as_slice() > other.as_slice() }
|
|
|
|
|
}
|
2012-08-27 19:15:54 -05:00
|
|
|
|
|
2013-12-10 01:16:18 -06:00
|
|
|
|
impl<'a,T:Clone, V: Vector<T>> Add<V, ~[T]> for &'a [T] {
|
2013-07-02 21:13:00 -05:00
|
|
|
|
#[inline]
|
|
|
|
|
fn add(&self, rhs: &V) -> ~[T] {
|
2013-08-08 22:49:49 -05:00
|
|
|
|
let mut res = with_capacity(self.len() + rhs.as_slice().len());
|
|
|
|
|
res.push_all(*self);
|
2013-07-02 21:13:00 -05:00
|
|
|
|
res.push_all(rhs.as_slice());
|
|
|
|
|
res
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-08-08 22:49:49 -05:00
|
|
|
|
|
2013-07-02 14:47:32 -05:00
|
|
|
|
impl<T:Clone, V: Vector<T>> Add<V, ~[T]> for ~[T] {
|
2013-07-02 21:13:00 -05:00
|
|
|
|
#[inline]
|
|
|
|
|
fn add(&self, rhs: &V) -> ~[T] {
|
2013-08-08 22:49:49 -05:00
|
|
|
|
self.as_slice() + rhs.as_slice()
|
2013-07-02 21:13:00 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
2012-08-27 19:15:54 -05:00
|
|
|
|
}
|
|
|
|
|
|
2013-07-02 21:13:00 -05:00
|
|
|
|
#[cfg(test)]
|
|
|
|
|
pub mod traits {}
|
2012-08-29 21:23:15 -05:00
|
|
|
|
|
2013-07-02 21:13:00 -05:00
|
|
|
|
/// Any vector that can be represented as a slice.
|
|
|
|
|
pub trait Vector<T> {
|
|
|
|
|
/// Work with `self` as a slice.
|
|
|
|
|
fn as_slice<'a>(&'a self) -> &'a [T];
|
2012-10-19 08:01:01 -05:00
|
|
|
|
}
|
2013-08-10 21:21:31 -05:00
|
|
|
|
|
2013-12-10 01:16:18 -06:00
|
|
|
|
impl<'a,T> Vector<T> for &'a [T] {
|
2013-07-02 21:13:00 -05:00
|
|
|
|
#[inline(always)]
|
|
|
|
|
fn as_slice<'a>(&'a self) -> &'a [T] { *self }
|
2012-09-19 20:00:26 -05:00
|
|
|
|
}
|
2013-08-10 21:21:31 -05:00
|
|
|
|
|
2013-07-02 21:13:00 -05:00
|
|
|
|
impl<T> Vector<T> for ~[T] {
|
|
|
|
|
#[inline(always)]
|
|
|
|
|
fn as_slice<'a>(&'a self) -> &'a [T] { let v: &'a [T] = *self; v }
|
2012-09-19 20:00:26 -05:00
|
|
|
|
}
|
2013-08-10 21:21:31 -05:00
|
|
|
|
|
2013-12-10 01:16:18 -06:00
|
|
|
|
impl<'a, T> Container for &'a [T] {
|
2012-07-04 16:53:12 -05:00
|
|
|
|
/// Returns the length of a vector
|
2012-06-02 21:03:28 -05:00
|
|
|
|
#[inline]
|
2013-06-15 01:20:06 -05:00
|
|
|
|
fn len(&self) -> uint {
|
2013-12-17 08:49:31 -06:00
|
|
|
|
self.repr().len
|
2013-06-08 20:38:47 -05:00
|
|
|
|
}
|
2013-06-15 01:20:06 -05:00
|
|
|
|
}
|
2013-06-08 20:38:47 -05:00
|
|
|
|
|
2013-06-15 01:20:06 -05:00
|
|
|
|
impl<T> Container for ~[T] {
|
|
|
|
|
/// Returns the length of a vector
|
|
|
|
|
#[inline]
|
|
|
|
|
fn len(&self) -> uint {
|
2014-01-14 15:33:08 -06:00
|
|
|
|
self.as_slice().len()
|
2013-06-15 01:20:06 -05:00
|
|
|
|
}
|
2012-06-02 21:03:28 -05:00
|
|
|
|
}
|
|
|
|
|
|
2014-01-28 12:40:38 -06:00
|
|
|
|
/// Extension methods for vector slices with cloneable elements
|
|
|
|
|
pub trait CloneableVector<T> {
|
2013-08-10 21:21:31 -05:00
|
|
|
|
/// Copy `self` into a new owned vector
|
2013-03-21 23:20:48 -05:00
|
|
|
|
fn to_owned(&self) -> ~[T];
|
2013-08-10 21:21:31 -05:00
|
|
|
|
|
2014-01-30 12:29:35 -06:00
|
|
|
|
/// Convert `self` into an owned vector, not making a copy if possible.
|
2013-08-10 21:21:31 -05:00
|
|
|
|
fn into_owned(self) -> ~[T];
|
2012-07-11 14:45:54 -05:00
|
|
|
|
}
|
|
|
|
|
|
2013-08-10 21:21:31 -05:00
|
|
|
|
/// Extension methods for vector slices
|
2014-01-28 12:40:38 -06:00
|
|
|
|
impl<'a, T: Clone> CloneableVector<T> for &'a [T] {
|
2013-06-13 21:06:47 -05:00
|
|
|
|
/// Returns a copy of `v`.
|
2012-06-02 21:03:28 -05:00
|
|
|
|
#[inline]
|
2013-03-21 23:20:48 -05:00
|
|
|
|
fn to_owned(&self) -> ~[T] {
|
2013-06-27 09:40:47 -05:00
|
|
|
|
let mut result = with_capacity(self.len());
|
2013-08-03 11:45:23 -05:00
|
|
|
|
for e in self.iter() {
|
2013-07-02 14:47:32 -05:00
|
|
|
|
result.push((*e).clone());
|
2013-03-16 13:11:31 -05:00
|
|
|
|
}
|
2013-03-20 13:13:13 -05:00
|
|
|
|
result
|
2013-01-07 21:46:45 -06:00
|
|
|
|
}
|
2013-08-10 21:21:31 -05:00
|
|
|
|
|
|
|
|
|
#[inline(always)]
|
|
|
|
|
fn into_owned(self) -> ~[T] { self.to_owned() }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Extension methods for owned vectors
|
2014-01-28 12:40:38 -06:00
|
|
|
|
impl<T: Clone> CloneableVector<T> for ~[T] {
|
2013-08-10 21:21:31 -05:00
|
|
|
|
#[inline]
|
|
|
|
|
fn to_owned(&self) -> ~[T] { self.clone() }
|
|
|
|
|
|
|
|
|
|
#[inline(always)]
|
|
|
|
|
fn into_owned(self) -> ~[T] { self }
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-14 06:21:47 -05:00
|
|
|
|
/// Extension methods for vectors
|
2013-12-10 01:16:18 -06:00
|
|
|
|
pub trait ImmutableVector<'a, T> {
|
2013-10-14 06:21:47 -05:00
|
|
|
|
/**
|
|
|
|
|
* Returns a slice of self between `start` and `end`.
|
|
|
|
|
*
|
|
|
|
|
* Fails when `start` or `end` point outside the bounds of self,
|
|
|
|
|
* or when `start` > `end`.
|
|
|
|
|
*/
|
2013-12-10 01:16:18 -06:00
|
|
|
|
fn slice(&self, start: uint, end: uint) -> &'a [T];
|
2013-10-14 06:21:47 -05:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Returns a slice of self from `start` to the end of the vec.
|
|
|
|
|
*
|
|
|
|
|
* Fails when `start` points outside the bounds of self.
|
|
|
|
|
*/
|
2013-12-10 01:16:18 -06:00
|
|
|
|
fn slice_from(&self, start: uint) -> &'a [T];
|
2013-10-14 06:21:47 -05:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Returns a slice of self from the start of the vec to `end`.
|
|
|
|
|
*
|
|
|
|
|
* Fails when `end` points outside the bounds of self.
|
|
|
|
|
*/
|
2013-12-10 01:16:18 -06:00
|
|
|
|
fn slice_to(&self, end: uint) -> &'a [T];
|
2013-10-14 06:21:47 -05:00
|
|
|
|
/// Returns an iterator over the vector
|
2014-01-14 21:32:24 -06:00
|
|
|
|
fn iter(self) -> Items<'a, T>;
|
2013-10-14 06:21:47 -05:00
|
|
|
|
/// Returns a reversed iterator over a vector
|
2014-01-14 21:32:24 -06:00
|
|
|
|
fn rev_iter(self) -> RevItems<'a, T>;
|
2013-10-14 06:21:47 -05:00
|
|
|
|
/// Returns an iterator over the subslices of the vector which are
|
2013-12-01 11:50:34 -06:00
|
|
|
|
/// separated by elements that match `pred`. The matched element
|
|
|
|
|
/// is not contained in the subslices.
|
2014-01-14 21:32:24 -06:00
|
|
|
|
fn split(self, pred: 'a |&T| -> bool) -> Splits<'a, T>;
|
2013-10-14 06:21:47 -05:00
|
|
|
|
/// Returns an iterator over the subslices of the vector which are
|
|
|
|
|
/// separated by elements that match `pred`, limited to splitting
|
2013-12-01 11:50:34 -06:00
|
|
|
|
/// at most `n` times. The matched element is not contained in
|
|
|
|
|
/// the subslices.
|
2014-01-14 21:32:24 -06:00
|
|
|
|
fn splitn(self, n: uint, pred: 'a |&T| -> bool) -> Splits<'a, T>;
|
2013-10-14 06:21:47 -05:00
|
|
|
|
/// Returns an iterator over the subslices of the vector which are
|
|
|
|
|
/// separated by elements that match `pred`. This starts at the
|
2013-12-01 11:50:34 -06:00
|
|
|
|
/// end of the vector and works backwards. The matched element is
|
|
|
|
|
/// not contained in the subslices.
|
2014-01-14 21:32:24 -06:00
|
|
|
|
fn rsplit(self, pred: 'a |&T| -> bool) -> RevSplits<'a, T>;
|
2013-10-14 06:21:47 -05:00
|
|
|
|
/// Returns an iterator over the subslices of the vector which are
|
|
|
|
|
/// separated by elements that match `pred` limited to splitting
|
|
|
|
|
/// at most `n` times. This starts at the end of the vector and
|
2013-12-01 11:50:34 -06:00
|
|
|
|
/// works backwards. The matched element is not contained in the
|
|
|
|
|
/// subslices.
|
2014-01-14 21:32:24 -06:00
|
|
|
|
fn rsplitn(self, n: uint, pred: 'a |&T| -> bool) -> RevSplits<'a, T>;
|
2013-07-02 23:54:11 -05:00
|
|
|
|
|
2013-10-14 06:21:47 -05:00
|
|
|
|
/**
|
|
|
|
|
* Returns an iterator over all contiguous windows of length
|
|
|
|
|
* `size`. The windows overlap. If the vector is shorter than
|
|
|
|
|
* `size`, the iterator returns no values.
|
|
|
|
|
*
|
|
|
|
|
* # Failure
|
|
|
|
|
*
|
|
|
|
|
* Fails if `size` is 0.
|
|
|
|
|
*
|
|
|
|
|
* # Example
|
|
|
|
|
*
|
|
|
|
|
* Print the adjacent pairs of a vector (i.e. `[1,2]`, `[2,3]`,
|
|
|
|
|
* `[3,4]`):
|
|
|
|
|
*
|
|
|
|
|
* ```rust
|
|
|
|
|
* let v = &[1,2,3,4];
|
2013-11-23 04:18:51 -06:00
|
|
|
|
* for win in v.windows(2) {
|
2013-10-14 06:21:47 -05:00
|
|
|
|
* println!("{:?}", win);
|
|
|
|
|
* }
|
|
|
|
|
* ```
|
|
|
|
|
*
|
|
|
|
|
*/
|
2014-01-14 21:32:24 -06:00
|
|
|
|
fn windows(self, size: uint) -> Windows<'a, T>;
|
2013-10-14 06:21:47 -05:00
|
|
|
|
/**
|
|
|
|
|
*
|
|
|
|
|
* Returns an iterator over `size` elements of the vector at a
|
|
|
|
|
* time. The chunks do not overlap. If `size` does not divide the
|
|
|
|
|
* length of the vector, then the last chunk will not have length
|
|
|
|
|
* `size`.
|
|
|
|
|
*
|
|
|
|
|
* # Failure
|
|
|
|
|
*
|
|
|
|
|
* Fails if `size` is 0.
|
|
|
|
|
*
|
|
|
|
|
* # Example
|
|
|
|
|
*
|
|
|
|
|
* Print the vector two elements at a time (i.e. `[1,2]`,
|
|
|
|
|
* `[3,4]`, `[5]`):
|
|
|
|
|
*
|
|
|
|
|
* ```rust
|
|
|
|
|
* let v = &[1,2,3,4,5];
|
2013-11-23 04:18:51 -06:00
|
|
|
|
* for win in v.chunks(2) {
|
2013-10-14 06:21:47 -05:00
|
|
|
|
* println!("{:?}", win);
|
|
|
|
|
* }
|
|
|
|
|
* ```
|
|
|
|
|
*
|
|
|
|
|
*/
|
2014-01-14 21:32:24 -06:00
|
|
|
|
fn chunks(self, size: uint) -> Chunks<'a, T>;
|
2013-07-03 00:47:58 -05:00
|
|
|
|
|
2013-10-14 06:21:47 -05:00
|
|
|
|
/// Returns the element of a vector at the given index, or `None` if the
|
|
|
|
|
/// index is out of bounds
|
2013-12-23 07:38:02 -06:00
|
|
|
|
fn get(&self, index: uint) -> Option<&'a T>;
|
2013-10-14 06:21:47 -05:00
|
|
|
|
/// Returns the first element of a vector, or `None` if it is empty
|
2013-12-23 07:46:54 -06:00
|
|
|
|
fn head(&self) -> Option<&'a T>;
|
2013-10-14 06:21:47 -05:00
|
|
|
|
/// Returns all but the first element of a vector
|
2013-12-10 01:16:18 -06:00
|
|
|
|
fn tail(&self) -> &'a [T];
|
2013-10-14 06:21:47 -05:00
|
|
|
|
/// Returns all but the first `n' elements of a vector
|
2013-12-10 01:16:18 -06:00
|
|
|
|
fn tailn(&self, n: uint) -> &'a [T];
|
2013-10-14 06:21:47 -05:00
|
|
|
|
/// Returns all but the last element of a vector
|
2013-12-10 01:16:18 -06:00
|
|
|
|
fn init(&self) -> &'a [T];
|
2013-12-14 23:26:09 -06:00
|
|
|
|
/// Returns all but the last `n' elements of a vector
|
2013-12-10 01:16:18 -06:00
|
|
|
|
fn initn(&self, n: uint) -> &'a [T];
|
2013-10-14 06:21:47 -05:00
|
|
|
|
/// Returns the last element of a vector, or `None` if it is empty.
|
2013-12-23 08:08:23 -06:00
|
|
|
|
fn last(&self) -> Option<&'a T>;
|
2013-10-14 06:21:47 -05:00
|
|
|
|
/**
|
|
|
|
|
* Apply a function to each element of a vector and return a concatenation
|
|
|
|
|
* of each result vector
|
|
|
|
|
*/
|
2013-11-18 23:15:42 -06:00
|
|
|
|
fn flat_map<U>(&self, f: |t: &T| -> ~[U]) -> ~[U];
|
2013-10-14 06:21:47 -05:00
|
|
|
|
/// Returns a pointer to the element at the given index, without doing
|
|
|
|
|
/// bounds checking.
|
2014-01-21 08:34:42 -06:00
|
|
|
|
unsafe fn unsafe_ref(self, index: uint) -> &'a T;
|
2013-06-28 22:35:25 -05:00
|
|
|
|
|
2013-12-15 06:35:12 -06:00
|
|
|
|
/**
|
|
|
|
|
* Returns an unsafe pointer to the vector's buffer
|
|
|
|
|
*
|
|
|
|
|
* The caller must ensure that the vector outlives the pointer this
|
|
|
|
|
* function returns, or else it will end up pointing to garbage.
|
|
|
|
|
*
|
|
|
|
|
* Modifying the vector may cause its buffer to be reallocated, which
|
|
|
|
|
* would also make any pointers to it invalid.
|
|
|
|
|
*/
|
|
|
|
|
fn as_ptr(&self) -> *T;
|
|
|
|
|
|
2013-10-14 06:21:47 -05:00
|
|
|
|
/**
|
|
|
|
|
* Binary search a sorted vector with a comparator function.
|
|
|
|
|
*
|
2013-12-14 23:26:09 -06:00
|
|
|
|
* The comparator function should implement an order consistent
|
|
|
|
|
* with the sort order of the underlying vector, returning an
|
|
|
|
|
* order code that indicates whether its argument is `Less`,
|
|
|
|
|
* `Equal` or `Greater` the desired target.
|
2013-10-14 06:21:47 -05:00
|
|
|
|
*
|
|
|
|
|
* Returns the index where the comparator returned `Equal`, or `None` if
|
|
|
|
|
* not found.
|
|
|
|
|
*/
|
2013-11-18 23:15:42 -06:00
|
|
|
|
fn bsearch(&self, f: |&T| -> Ordering) -> Option<uint>;
|
2013-06-29 00:05:50 -05:00
|
|
|
|
|
2013-10-14 06:21:47 -05:00
|
|
|
|
/// Deprecated, use iterators where possible
|
|
|
|
|
/// (`self.iter().map(f)`). Apply a function to each element
|
|
|
|
|
/// of a vector and return the results.
|
2013-11-18 23:15:42 -06:00
|
|
|
|
fn map<U>(&self, |t: &T| -> U) -> ~[U];
|
2013-07-03 01:34:17 -05:00
|
|
|
|
|
2013-11-16 16:29:19 -06:00
|
|
|
|
/**
|
|
|
|
|
* Returns a mutable reference to the first element in this slice
|
|
|
|
|
* and adjusts the slice in place so that it no longer contains
|
|
|
|
|
* that element. O(1).
|
|
|
|
|
*
|
|
|
|
|
* Equivalent to:
|
|
|
|
|
*
|
2014-02-15 01:44:22 -06:00
|
|
|
|
* ```ignore
|
2014-01-25 11:00:46 -06:00
|
|
|
|
* if self.len() == 0 { return None }
|
2013-11-16 16:29:19 -06:00
|
|
|
|
* let head = &self[0];
|
|
|
|
|
* *self = self.slice_from(1);
|
2014-01-25 11:00:46 -06:00
|
|
|
|
* Some(head)
|
2013-11-16 16:29:19 -06:00
|
|
|
|
* ```
|
|
|
|
|
*
|
2014-01-25 11:00:46 -06:00
|
|
|
|
* Returns `None` if vector is empty
|
2013-11-16 16:29:19 -06:00
|
|
|
|
*/
|
2014-01-25 11:00:46 -06:00
|
|
|
|
fn shift_ref(&mut self) -> Option<&'a T>;
|
2013-11-16 16:29:19 -06:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Returns a mutable reference to the last element in this slice
|
|
|
|
|
* and adjusts the slice in place so that it no longer contains
|
|
|
|
|
* that element. O(1).
|
|
|
|
|
*
|
|
|
|
|
* Equivalent to:
|
|
|
|
|
*
|
2014-02-15 01:44:22 -06:00
|
|
|
|
* ```ignore
|
2014-01-25 14:33:31 -06:00
|
|
|
|
* if self.len() == 0 { return None; }
|
2013-11-16 16:29:19 -06:00
|
|
|
|
* let tail = &self[self.len() - 1];
|
|
|
|
|
* *self = self.slice_to(self.len() - 1);
|
2014-01-25 14:33:31 -06:00
|
|
|
|
* Some(tail)
|
2013-11-16 16:29:19 -06:00
|
|
|
|
* ```
|
|
|
|
|
*
|
2014-01-25 14:33:31 -06:00
|
|
|
|
* Returns `None` if slice is empty.
|
2013-11-16 16:29:19 -06:00
|
|
|
|
*/
|
2014-01-25 14:33:31 -06:00
|
|
|
|
fn pop_ref(&mut self) -> Option<&'a T>;
|
2013-04-10 15:11:35 -05:00
|
|
|
|
}
|
|
|
|
|
|
2013-12-10 01:16:18 -06:00
|
|
|
|
impl<'a,T> ImmutableVector<'a, T> for &'a [T] {
|
2013-04-10 15:11:35 -05:00
|
|
|
|
#[inline]
|
2013-12-10 01:16:18 -06:00
|
|
|
|
fn slice(&self, start: uint, end: uint) -> &'a [T] {
|
2013-10-14 23:37:32 -05:00
|
|
|
|
assert!(start <= end);
|
|
|
|
|
assert!(end <= self.len());
|
2013-12-17 08:49:31 -06:00
|
|
|
|
unsafe {
|
2014-02-14 17:42:01 -06:00
|
|
|
|
transmute(Slice {
|
2013-12-17 08:49:31 -06:00
|
|
|
|
data: self.as_ptr().offset(start as int),
|
2013-10-14 23:37:32 -05:00
|
|
|
|
len: (end - start)
|
|
|
|
|
})
|
2013-12-17 08:49:31 -06:00
|
|
|
|
}
|
2013-10-14 23:37:32 -05:00
|
|
|
|
}
|
|
|
|
|
|
2013-07-21 08:39:01 -05:00
|
|
|
|
#[inline]
|
2013-12-10 01:16:18 -06:00
|
|
|
|
fn slice_from(&self, start: uint) -> &'a [T] {
|
2013-07-21 08:39:01 -05:00
|
|
|
|
self.slice(start, self.len())
|
|
|
|
|
}
|
2013-10-14 23:37:32 -05:00
|
|
|
|
|
2013-07-21 08:39:01 -05:00
|
|
|
|
#[inline]
|
2013-12-10 01:16:18 -06:00
|
|
|
|
fn slice_to(&self, end: uint) -> &'a [T] {
|
2013-07-21 08:39:01 -05:00
|
|
|
|
self.slice(0, end)
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-17 18:34:53 -05:00
|
|
|
|
#[inline]
|
2014-01-14 21:32:24 -06:00
|
|
|
|
fn iter(self) -> Items<'a, T> {
|
2013-04-17 18:34:53 -05:00
|
|
|
|
unsafe {
|
2013-12-15 06:35:12 -06:00
|
|
|
|
let p = self.as_ptr();
|
2013-10-16 20:34:01 -05:00
|
|
|
|
if mem::size_of::<T>() == 0 {
|
2014-01-14 21:32:24 -06:00
|
|
|
|
Items{ptr: p,
|
2014-01-22 13:03:02 -06:00
|
|
|
|
end: (p as uint + self.len()) as *T,
|
|
|
|
|
marker: marker::ContravariantLifetime::<'a>}
|
2013-08-06 16:15:43 -05:00
|
|
|
|
} else {
|
2014-01-14 21:32:24 -06:00
|
|
|
|
Items{ptr: p,
|
2014-01-22 13:03:02 -06:00
|
|
|
|
end: p.offset(self.len() as int),
|
|
|
|
|
marker: marker::ContravariantLifetime::<'a>}
|
2013-08-06 16:15:43 -05:00
|
|
|
|
}
|
2013-04-17 18:34:53 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
2013-07-11 20:10:59 -05:00
|
|
|
|
|
2013-06-07 21:39:52 -05:00
|
|
|
|
#[inline]
|
2014-01-14 21:32:24 -06:00
|
|
|
|
fn rev_iter(self) -> RevItems<'a, T> {
|
2014-01-23 13:41:57 -06:00
|
|
|
|
self.iter().rev()
|
2013-06-07 21:39:52 -05:00
|
|
|
|
}
|
2013-04-17 18:34:53 -05:00
|
|
|
|
|
2013-07-02 23:54:11 -05:00
|
|
|
|
#[inline]
|
2014-01-14 21:32:24 -06:00
|
|
|
|
fn split(self, pred: 'a |&T| -> bool) -> Splits<'a, T> {
|
2014-01-25 01:37:51 -06:00
|
|
|
|
self.splitn(uint::MAX, pred)
|
2013-07-02 23:54:11 -05:00
|
|
|
|
}
|
2013-11-23 04:18:51 -06:00
|
|
|
|
|
2013-07-02 23:54:11 -05:00
|
|
|
|
#[inline]
|
2014-01-14 21:32:24 -06:00
|
|
|
|
fn splitn(self, n: uint, pred: 'a |&T| -> bool) -> Splits<'a, T> {
|
|
|
|
|
Splits {
|
2013-07-02 23:54:11 -05:00
|
|
|
|
v: self,
|
|
|
|
|
n: n,
|
|
|
|
|
pred: pred,
|
|
|
|
|
finished: false
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-11-23 04:18:51 -06:00
|
|
|
|
|
2013-07-02 23:54:11 -05:00
|
|
|
|
#[inline]
|
2014-01-14 21:32:24 -06:00
|
|
|
|
fn rsplit(self, pred: 'a |&T| -> bool) -> RevSplits<'a, T> {
|
2014-01-25 01:37:51 -06:00
|
|
|
|
self.rsplitn(uint::MAX, pred)
|
2013-07-02 23:54:11 -05:00
|
|
|
|
}
|
2013-11-23 04:18:51 -06:00
|
|
|
|
|
2013-07-02 23:54:11 -05:00
|
|
|
|
#[inline]
|
2014-01-14 21:32:24 -06:00
|
|
|
|
fn rsplitn(self, n: uint, pred: 'a |&T| -> bool) -> RevSplits<'a, T> {
|
|
|
|
|
RevSplits {
|
2013-07-02 23:54:11 -05:00
|
|
|
|
v: self,
|
|
|
|
|
n: n,
|
|
|
|
|
pred: pred,
|
|
|
|
|
finished: false
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-11-23 04:18:51 -06:00
|
|
|
|
#[inline]
|
2014-01-14 21:32:24 -06:00
|
|
|
|
fn windows(self, size: uint) -> Windows<'a, T> {
|
2013-07-03 00:47:58 -05:00
|
|
|
|
assert!(size != 0);
|
2014-01-14 21:32:24 -06:00
|
|
|
|
Windows { v: self, size: size }
|
2013-07-03 00:47:58 -05:00
|
|
|
|
}
|
|
|
|
|
|
2013-11-23 04:18:51 -06:00
|
|
|
|
#[inline]
|
2014-01-14 21:32:24 -06:00
|
|
|
|
fn chunks(self, size: uint) -> Chunks<'a, T> {
|
2013-07-03 00:47:58 -05:00
|
|
|
|
assert!(size != 0);
|
2014-01-14 21:32:24 -06:00
|
|
|
|
Chunks { v: self, size: size }
|
2013-07-03 00:47:58 -05:00
|
|
|
|
}
|
|
|
|
|
|
2013-09-29 10:59:00 -05:00
|
|
|
|
#[inline]
|
2013-12-23 07:38:02 -06:00
|
|
|
|
fn get(&self, index: uint) -> Option<&'a T> {
|
2013-09-29 10:59:00 -05:00
|
|
|
|
if index < self.len() { Some(&self[index]) } else { None }
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-10 15:11:35 -05:00
|
|
|
|
#[inline]
|
2013-12-23 07:46:54 -06:00
|
|
|
|
fn head(&self) -> Option<&'a T> {
|
2013-06-27 07:36:27 -05:00
|
|
|
|
if self.len() == 0 { None } else { Some(&self[0]) }
|
|
|
|
|
}
|
2013-04-10 15:11:35 -05:00
|
|
|
|
|
|
|
|
|
#[inline]
|
2013-12-10 01:16:18 -06:00
|
|
|
|
fn tail(&self) -> &'a [T] { self.slice(1, self.len()) }
|
2013-04-10 15:11:35 -05:00
|
|
|
|
|
|
|
|
|
#[inline]
|
2013-12-10 01:16:18 -06:00
|
|
|
|
fn tailn(&self, n: uint) -> &'a [T] { self.slice(n, self.len()) }
|
2013-04-10 15:11:35 -05:00
|
|
|
|
|
|
|
|
|
#[inline]
|
2013-12-10 01:16:18 -06:00
|
|
|
|
fn init(&self) -> &'a [T] {
|
2013-06-27 07:36:27 -05:00
|
|
|
|
self.slice(0, self.len() - 1)
|
|
|
|
|
}
|
2013-04-10 15:11:35 -05:00
|
|
|
|
|
|
|
|
|
#[inline]
|
2013-12-10 01:16:18 -06:00
|
|
|
|
fn initn(&self, n: uint) -> &'a [T] {
|
2013-06-27 07:36:27 -05:00
|
|
|
|
self.slice(0, self.len() - n)
|
|
|
|
|
}
|
2013-04-10 15:11:35 -05:00
|
|
|
|
|
|
|
|
|
#[inline]
|
2013-12-23 08:08:23 -06:00
|
|
|
|
fn last(&self) -> Option<&'a T> {
|
2013-06-27 07:36:27 -05:00
|
|
|
|
if self.len() == 0 { None } else { Some(&self[self.len() - 1]) }
|
|
|
|
|
}
|
2013-04-10 15:11:35 -05:00
|
|
|
|
|
|
|
|
|
#[inline]
|
2013-11-18 23:15:42 -06:00
|
|
|
|
fn flat_map<U>(&self, f: |t: &T| -> ~[U]) -> ~[U] {
|
2013-04-10 15:11:35 -05:00
|
|
|
|
flat_map(*self, f)
|
|
|
|
|
}
|
2013-07-02 14:47:32 -05:00
|
|
|
|
|
2013-06-18 16:45:18 -05:00
|
|
|
|
#[inline]
|
2014-01-21 08:34:42 -06:00
|
|
|
|
unsafe fn unsafe_ref(self, index: uint) -> &'a T {
|
2014-02-14 17:42:01 -06:00
|
|
|
|
transmute(self.repr().data.offset(index as int))
|
2013-04-19 17:57:31 -05:00
|
|
|
|
}
|
2013-06-28 22:35:25 -05:00
|
|
|
|
|
2013-12-15 06:35:12 -06:00
|
|
|
|
#[inline]
|
|
|
|
|
fn as_ptr(&self) -> *T {
|
|
|
|
|
self.repr().data
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2013-11-18 23:15:42 -06:00
|
|
|
|
fn bsearch(&self, f: |&T| -> Ordering) -> Option<uint> {
|
2013-06-28 22:35:25 -05:00
|
|
|
|
let mut base : uint = 0;
|
|
|
|
|
let mut lim : uint = self.len();
|
|
|
|
|
|
|
|
|
|
while lim != 0 {
|
|
|
|
|
let ix = base + (lim >> 1);
|
|
|
|
|
match f(&self[ix]) {
|
|
|
|
|
Equal => return Some(ix),
|
|
|
|
|
Less => {
|
|
|
|
|
base = ix + 1;
|
|
|
|
|
lim -= 1;
|
|
|
|
|
}
|
|
|
|
|
Greater => ()
|
|
|
|
|
}
|
|
|
|
|
lim >>= 1;
|
|
|
|
|
}
|
|
|
|
|
return None;
|
|
|
|
|
}
|
2013-06-29 00:05:50 -05:00
|
|
|
|
|
2013-11-18 23:15:42 -06:00
|
|
|
|
fn map<U>(&self, f: |t: &T| -> U) -> ~[U] {
|
2013-08-09 22:09:47 -05:00
|
|
|
|
self.iter().map(f).collect()
|
2013-06-29 00:05:50 -05:00
|
|
|
|
}
|
2013-07-03 01:34:17 -05:00
|
|
|
|
|
2014-01-25 11:00:46 -06:00
|
|
|
|
fn shift_ref(&mut self) -> Option<&'a T> {
|
|
|
|
|
if self.len() == 0 { return None; }
|
2013-11-16 16:29:19 -06:00
|
|
|
|
unsafe {
|
2014-02-14 17:42:01 -06:00
|
|
|
|
let s: &mut Slice<T> = transmute(self);
|
2014-01-25 11:00:46 -06:00
|
|
|
|
Some(&*raw::shift_ptr(s))
|
2013-11-16 16:29:19 -06:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-25 14:33:31 -06:00
|
|
|
|
fn pop_ref(&mut self) -> Option<&'a T> {
|
|
|
|
|
if self.len() == 0 { return None; }
|
2013-11-16 16:29:19 -06:00
|
|
|
|
unsafe {
|
2014-02-14 17:42:01 -06:00
|
|
|
|
let s: &mut Slice<T> = transmute(self);
|
2014-01-25 14:33:31 -06:00
|
|
|
|
Some(&*raw::pop_ptr(s))
|
2013-11-16 16:29:19 -06:00
|
|
|
|
}
|
|
|
|
|
}
|
2013-04-10 15:11:35 -05:00
|
|
|
|
}
|
|
|
|
|
|
2013-10-14 06:21:47 -05:00
|
|
|
|
/// Extension methods for vectors contain `Eq` elements.
|
2013-02-20 19:07:17 -06:00
|
|
|
|
pub trait ImmutableEqVector<T:Eq> {
|
2013-10-14 06:21:47 -05:00
|
|
|
|
/// Find the first index containing a matching value
|
2013-03-21 23:20:48 -05:00
|
|
|
|
fn position_elem(&self, t: &T) -> Option<uint>;
|
2013-10-14 06:21:47 -05:00
|
|
|
|
|
|
|
|
|
/// Find the last index containing a matching value
|
2013-03-21 23:20:48 -05:00
|
|
|
|
fn rposition_elem(&self, t: &T) -> Option<uint>;
|
2013-10-14 06:21:47 -05:00
|
|
|
|
|
|
|
|
|
/// Return true if a vector contains an element with the given value
|
2013-06-28 11:08:32 -05:00
|
|
|
|
fn contains(&self, x: &T) -> bool;
|
2013-10-17 00:01:20 -05:00
|
|
|
|
|
|
|
|
|
/// Returns true if `needle` is a prefix of the vector.
|
|
|
|
|
fn starts_with(&self, needle: &[T]) -> bool;
|
|
|
|
|
|
|
|
|
|
/// Returns true if `needle` is a suffix of the vector.
|
|
|
|
|
fn ends_with(&self, needle: &[T]) -> bool;
|
2013-01-07 10:38:24 -06:00
|
|
|
|
}
|
|
|
|
|
|
2013-12-10 01:16:18 -06:00
|
|
|
|
impl<'a,T:Eq> ImmutableEqVector<T> for &'a [T] {
|
2012-08-27 18:26:35 -05:00
|
|
|
|
#[inline]
|
2013-03-21 23:20:48 -05:00
|
|
|
|
fn position_elem(&self, x: &T) -> Option<uint> {
|
2013-07-04 21:13:26 -05:00
|
|
|
|
self.iter().position(|y| *x == *y)
|
2012-09-28 00:20:47 -05:00
|
|
|
|
}
|
|
|
|
|
|
2012-08-27 18:26:35 -05:00
|
|
|
|
#[inline]
|
2013-03-21 23:20:48 -05:00
|
|
|
|
fn rposition_elem(&self, t: &T) -> Option<uint> {
|
2013-08-30 13:00:14 -05:00
|
|
|
|
self.iter().rposition(|x| *x == *t)
|
2013-06-28 11:08:32 -05:00
|
|
|
|
}
|
|
|
|
|
|
2013-10-16 23:56:31 -05:00
|
|
|
|
#[inline]
|
2013-06-28 11:08:32 -05:00
|
|
|
|
fn contains(&self, x: &T) -> bool {
|
2013-10-16 23:56:31 -05:00
|
|
|
|
self.iter().any(|elt| *x == *elt)
|
2012-09-28 00:20:47 -05:00
|
|
|
|
}
|
2013-10-17 00:01:20 -05:00
|
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
|
fn starts_with(&self, needle: &[T]) -> bool {
|
|
|
|
|
let n = needle.len();
|
|
|
|
|
self.len() >= n && needle == self.slice_to(n)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
|
fn ends_with(&self, needle: &[T]) -> bool {
|
|
|
|
|
let (m, n) = (self.len(), needle.len());
|
|
|
|
|
m >= n && needle == self.slice_from(m - n)
|
|
|
|
|
}
|
2012-08-27 18:26:35 -05:00
|
|
|
|
}
|
|
|
|
|
|
2013-10-14 06:21:47 -05:00
|
|
|
|
/// Extension methods for vectors containing `TotalOrd` elements.
|
2013-06-28 22:35:25 -05:00
|
|
|
|
pub trait ImmutableTotalOrdVector<T: TotalOrd> {
|
|
|
|
|
/**
|
|
|
|
|
* Binary search a sorted vector for a given element.
|
|
|
|
|
*
|
|
|
|
|
* Returns the index of the element or None if not found.
|
|
|
|
|
*/
|
2013-10-14 06:21:47 -05:00
|
|
|
|
fn bsearch_elem(&self, x: &T) -> Option<uint>;
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-10 01:16:18 -06:00
|
|
|
|
impl<'a, T: TotalOrd> ImmutableTotalOrdVector<T> for &'a [T] {
|
2013-06-28 22:35:25 -05:00
|
|
|
|
fn bsearch_elem(&self, x: &T) -> Option<uint> {
|
|
|
|
|
self.bsearch(|p| p.cmp(x))
|
2012-09-28 00:20:47 -05:00
|
|
|
|
}
|
2012-08-27 18:26:35 -05:00
|
|
|
|
}
|
|
|
|
|
|
2013-10-14 06:21:47 -05:00
|
|
|
|
/// Extension methods for vectors containing `Clone` elements.
|
2014-01-28 16:42:40 -06:00
|
|
|
|
pub trait ImmutableCloneableVector<T> {
|
2013-10-14 06:21:47 -05:00
|
|
|
|
/**
|
|
|
|
|
* Partitions the vector into those that satisfies the predicate, and
|
|
|
|
|
* those that do not.
|
|
|
|
|
*/
|
2013-11-18 23:15:42 -06:00
|
|
|
|
fn partitioned(&self, f: |&T| -> bool) -> (~[T], ~[T]);
|
2013-10-14 06:21:47 -05:00
|
|
|
|
|
|
|
|
|
/// Create an iterator that yields every possible permutation of the
|
|
|
|
|
/// vector in succession.
|
2013-11-23 04:18:51 -06:00
|
|
|
|
fn permutations(self) -> Permutations<T>;
|
2012-07-11 14:45:54 -05:00
|
|
|
|
}
|
|
|
|
|
|
2014-01-28 16:42:40 -06:00
|
|
|
|
impl<'a,T:Clone> ImmutableCloneableVector<T> for &'a [T] {
|
2013-01-07 10:49:41 -06:00
|
|
|
|
#[inline]
|
2013-11-18 23:15:42 -06:00
|
|
|
|
fn partitioned(&self, f: |&T| -> bool) -> (~[T], ~[T]) {
|
2013-06-27 09:10:18 -05:00
|
|
|
|
let mut lefts = ~[];
|
|
|
|
|
let mut rights = ~[];
|
|
|
|
|
|
2013-08-03 11:45:23 -05:00
|
|
|
|
for elt in self.iter() {
|
2013-06-27 09:10:18 -05:00
|
|
|
|
if f(elt) {
|
2013-07-02 14:47:32 -05:00
|
|
|
|
lefts.push((*elt).clone());
|
2013-06-27 09:10:18 -05:00
|
|
|
|
} else {
|
2013-07-02 14:47:32 -05:00
|
|
|
|
rights.push((*elt).clone());
|
2013-06-27 09:10:18 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
(lefts, rights)
|
2013-01-07 10:49:41 -06:00
|
|
|
|
}
|
2013-04-17 16:19:25 -05:00
|
|
|
|
|
2013-11-23 04:18:51 -06:00
|
|
|
|
fn permutations(self) -> Permutations<T> {
|
std::vec: Replace each_permutation with a new Permutations iterator
Introduce ElementSwaps and Permutations. ElementSwaps is an iterator
that for a given sequence length yields the element swaps needed
to visit each possible permutation of the sequence in turn.
We use an algorithm that generates a sequence such that each permutation
is only one swap apart.
let mut v = [1, 2, 3];
for perm in v.permutations_iter() {
// yields 1 2 3 | 1 3 2 | 3 1 2 | 3 2 1 | 2 3 1 | 2 1 3
}
The `.permutations_iter()` yields clones of the input vector for each
permutation.
If a copyless traversal is needed, it can be constructed with
`ElementSwaps`:
for (a, b) in ElementSwaps::new(3) {
// yields (2, 1), (1, 0), (2, 1) ...
v.swap(a, b);
// ..
}
2013-09-08 18:29:07 -05:00
|
|
|
|
Permutations{
|
|
|
|
|
swaps: ElementSwaps::new(self.len()),
|
|
|
|
|
v: self.to_owned(),
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-06-02 21:03:28 -05:00
|
|
|
|
}
|
|
|
|
|
|
2013-10-14 06:21:47 -05:00
|
|
|
|
/// Extension methods for owned vectors.
|
2013-01-07 10:38:24 -06:00
|
|
|
|
pub trait OwnedVector<T> {
|
2013-10-14 06:21:47 -05:00
|
|
|
|
/// Creates a consuming iterator, that is, one that moves each
|
|
|
|
|
/// value out of the vector (from start to end). The vector cannot
|
|
|
|
|
/// be used after calling this.
|
|
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```rust
|
|
|
|
|
/// let v = ~[~"a", ~"b"];
|
|
|
|
|
/// for s in v.move_iter() {
|
|
|
|
|
/// // s has type ~str, not &~str
|
2014-01-09 04:06:55 -06:00
|
|
|
|
/// println!("{}", s);
|
2013-10-14 06:21:47 -05:00
|
|
|
|
/// }
|
|
|
|
|
/// ```
|
2014-01-14 21:32:24 -06:00
|
|
|
|
fn move_iter(self) -> MoveItems<T>;
|
2013-10-14 06:21:47 -05:00
|
|
|
|
/// Creates a consuming iterator that moves out of the vector in
|
2013-12-16 04:26:25 -06:00
|
|
|
|
/// reverse order.
|
2014-01-14 21:32:24 -06:00
|
|
|
|
fn move_rev_iter(self) -> RevMoveItems<T>;
|
2013-07-01 10:26:44 -05:00
|
|
|
|
|
2013-10-14 06:21:47 -05:00
|
|
|
|
/**
|
|
|
|
|
* Reserves capacity for exactly `n` elements in the given vector.
|
|
|
|
|
*
|
|
|
|
|
* If the capacity for `self` is already equal to or greater than the requested
|
|
|
|
|
* capacity, then no action is taken.
|
|
|
|
|
*
|
|
|
|
|
* # Arguments
|
|
|
|
|
*
|
|
|
|
|
* * n - The number of elements to reserve space for
|
|
|
|
|
*
|
|
|
|
|
* # Failure
|
|
|
|
|
*
|
|
|
|
|
* This method always succeeds in reserving space for `n` elements, or it does
|
|
|
|
|
* not return.
|
|
|
|
|
*/
|
2014-01-31 07:03:20 -06:00
|
|
|
|
fn reserve_exact(&mut self, n: uint);
|
2013-10-14 06:21:47 -05:00
|
|
|
|
/**
|
|
|
|
|
* Reserves capacity for at least `n` elements in the given vector.
|
|
|
|
|
*
|
|
|
|
|
* This function will over-allocate in order to amortize the allocation costs
|
|
|
|
|
* in scenarios where the caller may need to repeatedly reserve additional
|
|
|
|
|
* space.
|
|
|
|
|
*
|
|
|
|
|
* If the capacity for `self` is already equal to or greater than the requested
|
|
|
|
|
* capacity, then no action is taken.
|
|
|
|
|
*
|
|
|
|
|
* # Arguments
|
|
|
|
|
*
|
|
|
|
|
* * n - The number of elements to reserve space for
|
|
|
|
|
*/
|
2014-01-31 07:03:20 -06:00
|
|
|
|
fn reserve(&mut self, n: uint);
|
2013-10-14 06:21:47 -05:00
|
|
|
|
/**
|
|
|
|
|
* Reserves capacity for at least `n` additional elements in the given vector.
|
|
|
|
|
*
|
|
|
|
|
* # Failure
|
|
|
|
|
*
|
|
|
|
|
* Fails if the new required capacity overflows uint.
|
|
|
|
|
*
|
|
|
|
|
* May also fail if `reserve` fails.
|
|
|
|
|
*/
|
2013-09-10 16:29:10 -05:00
|
|
|
|
fn reserve_additional(&mut self, n: uint);
|
2013-10-14 06:21:47 -05:00
|
|
|
|
/// Returns the number of elements the vector can hold without reallocating.
|
2013-06-27 09:40:47 -05:00
|
|
|
|
fn capacity(&self) -> uint;
|
2013-10-14 06:21:47 -05:00
|
|
|
|
/// Shrink the capacity of the vector to match the length
|
2013-08-19 13:17:10 -05:00
|
|
|
|
fn shrink_to_fit(&mut self);
|
2013-06-27 09:40:47 -05:00
|
|
|
|
|
2013-10-14 06:21:47 -05:00
|
|
|
|
/// Append an element to a vector
|
2012-10-02 13:37:37 -05:00
|
|
|
|
fn push(&mut self, t: T);
|
2013-10-14 06:21:47 -05:00
|
|
|
|
/// Takes ownership of the vector `rhs`, moving all elements into
|
|
|
|
|
/// the current vector. This does not copy any elements, and it is
|
|
|
|
|
/// illegal to use the `rhs` vector after calling this method
|
|
|
|
|
/// (because it is moved here).
|
|
|
|
|
///
|
|
|
|
|
/// # Example
|
|
|
|
|
///
|
|
|
|
|
/// ```rust
|
|
|
|
|
/// let mut a = ~[~1];
|
|
|
|
|
/// a.push_all_move(~[~2, ~3, ~4]);
|
|
|
|
|
/// assert!(a == ~[~1, ~2, ~3, ~4]);
|
|
|
|
|
/// ```
|
2012-10-02 13:37:37 -05:00
|
|
|
|
fn push_all_move(&mut self, rhs: ~[T]);
|
2013-10-14 06:21:47 -05:00
|
|
|
|
/// Remove the last element from a vector and return it, or `None` if it is empty
|
2013-12-23 09:20:52 -06:00
|
|
|
|
fn pop(&mut self) -> Option<T>;
|
2013-10-14 06:21:47 -05:00
|
|
|
|
/// Removes the first element from a vector and return it, or `None` if it is empty
|
2013-12-23 09:40:42 -06:00
|
|
|
|
fn shift(&mut self) -> Option<T>;
|
2013-10-14 06:21:47 -05:00
|
|
|
|
/// Prepend an element to the vector
|
2012-10-02 13:37:37 -05:00
|
|
|
|
fn unshift(&mut self, x: T);
|
2013-10-14 06:21:47 -05:00
|
|
|
|
|
|
|
|
|
/// Insert an element at position i within v, shifting all
|
|
|
|
|
/// elements after position i one position to the right.
|
2012-11-25 07:28:16 -06:00
|
|
|
|
fn insert(&mut self, i: uint, x:T);
|
2013-10-14 06:21:47 -05:00
|
|
|
|
|
2013-12-18 20:56:53 -06:00
|
|
|
|
/// Remove and return the element at position `i` within `v`,
|
|
|
|
|
/// shifting all elements after position `i` one position to the
|
|
|
|
|
/// left. Returns `None` if `i` is out of bounds.
|
|
|
|
|
///
|
|
|
|
|
/// # Example
|
|
|
|
|
/// ```rust
|
|
|
|
|
/// let mut v = ~[1, 2, 3];
|
2013-12-23 09:53:20 -06:00
|
|
|
|
/// assert_eq!(v.remove(1), Some(2));
|
2013-12-18 20:56:53 -06:00
|
|
|
|
/// assert_eq!(v, ~[1, 3]);
|
|
|
|
|
///
|
2013-12-23 09:53:20 -06:00
|
|
|
|
/// assert_eq!(v.remove(4), None);
|
2013-12-18 20:56:53 -06:00
|
|
|
|
/// // v is unchanged:
|
|
|
|
|
/// assert_eq!(v, ~[1, 3]);
|
|
|
|
|
/// ```
|
2013-12-23 09:53:20 -06:00
|
|
|
|
fn remove(&mut self, i: uint) -> Option<T>;
|
2013-10-14 06:21:47 -05:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Remove an element from anywhere in the vector and return it, replacing it
|
|
|
|
|
* with the last element. This does not preserve ordering, but is O(1).
|
|
|
|
|
*
|
|
|
|
|
* Fails if index >= length.
|
|
|
|
|
*/
|
2012-09-28 00:20:47 -05:00
|
|
|
|
fn swap_remove(&mut self, index: uint) -> T;
|
2013-10-14 06:21:47 -05:00
|
|
|
|
|
|
|
|
|
/// Shorten a vector, dropping excess elements.
|
2012-09-28 00:20:47 -05:00
|
|
|
|
fn truncate(&mut self, newlen: uint);
|
2013-10-14 06:21:47 -05:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Like `filter()`, but in place. Preserves order of `v`. Linear time.
|
|
|
|
|
*/
|
2013-11-18 23:15:42 -06:00
|
|
|
|
fn retain(&mut self, f: |t: &T| -> bool);
|
2013-10-14 06:21:47 -05:00
|
|
|
|
/**
|
|
|
|
|
* Partitions the vector into those that satisfies the predicate, and
|
|
|
|
|
* those that do not.
|
|
|
|
|
*/
|
2013-11-18 23:15:42 -06:00
|
|
|
|
fn partition(self, f: |&T| -> bool) -> (~[T], ~[T]);
|
2013-10-14 06:21:47 -05:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Expands a vector in place, initializing the new elements to the result of
|
2013-12-14 23:26:09 -06:00
|
|
|
|
* a function.
|
2013-10-14 06:21:47 -05:00
|
|
|
|
*
|
|
|
|
|
* Function `init_op` is called `n` times with the values [0..`n`)
|
|
|
|
|
*
|
|
|
|
|
* # Arguments
|
|
|
|
|
*
|
|
|
|
|
* * n - The number of elements to add
|
2013-12-14 23:26:09 -06:00
|
|
|
|
* * init_op - A function to call to retrieve each appended element's
|
2013-10-14 06:21:47 -05:00
|
|
|
|
* value
|
|
|
|
|
*/
|
2013-11-18 23:15:42 -06:00
|
|
|
|
fn grow_fn(&mut self, n: uint, op: |uint| -> T);
|
2013-12-15 06:05:30 -06:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Sets the length of a vector
|
|
|
|
|
*
|
|
|
|
|
* This will explicitly set the size of the vector, without actually
|
|
|
|
|
* modifying its buffers, so it is up to the caller to ensure that
|
|
|
|
|
* the vector is actually the specified size.
|
|
|
|
|
*/
|
|
|
|
|
unsafe fn set_len(&mut self, new_len: uint);
|
2012-09-26 19:33:34 -05:00
|
|
|
|
}
|
|
|
|
|
|
2013-02-14 13:47:00 -06:00
|
|
|
|
impl<T> OwnedVector<T> for ~[T] {
|
2013-12-16 04:26:25 -06:00
|
|
|
|
#[inline]
|
2014-01-14 21:32:24 -06:00
|
|
|
|
fn move_iter(self) -> MoveItems<T> {
|
2013-12-16 04:26:25 -06:00
|
|
|
|
unsafe {
|
2014-02-14 17:42:01 -06:00
|
|
|
|
let iter = transmute(self.iter());
|
|
|
|
|
let ptr = transmute(self);
|
2014-01-14 21:32:24 -06:00
|
|
|
|
MoveItems { allocation: ptr, iter: iter }
|
2013-12-16 04:26:25 -06:00
|
|
|
|
}
|
2013-07-01 10:26:44 -05:00
|
|
|
|
}
|
2013-12-16 04:26:25 -06:00
|
|
|
|
|
|
|
|
|
#[inline]
|
2014-01-14 21:32:24 -06:00
|
|
|
|
fn move_rev_iter(self) -> RevMoveItems<T> {
|
2014-01-23 13:41:57 -06:00
|
|
|
|
self.move_iter().rev()
|
2013-07-01 10:26:44 -05:00
|
|
|
|
}
|
|
|
|
|
|
2014-01-31 07:03:20 -06:00
|
|
|
|
fn reserve_exact(&mut self, n: uint) {
|
2014-01-14 01:46:58 -06:00
|
|
|
|
// Only make the (slow) call into the runtime if we have to
|
|
|
|
|
if self.capacity() < n {
|
|
|
|
|
unsafe {
|
2014-02-14 17:42:01 -06:00
|
|
|
|
let ptr: *mut *mut Vec<()> = transmute(self);
|
2014-01-14 01:46:58 -06:00
|
|
|
|
let alloc = n * mem::nonzero_size_of::<T>();
|
|
|
|
|
let size = alloc + mem::size_of::<Vec<()>>();
|
|
|
|
|
if alloc / mem::nonzero_size_of::<T>() != n || size < alloc {
|
|
|
|
|
fail!("vector size is too large: {}", n);
|
|
|
|
|
}
|
2013-12-12 15:27:26 -06:00
|
|
|
|
*ptr = realloc_raw(*ptr as *mut u8, size)
|
|
|
|
|
as *mut Vec<()>;
|
2014-01-14 01:46:58 -06:00
|
|
|
|
(**ptr).alloc = alloc;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-08-19 13:17:10 -05:00
|
|
|
|
#[inline]
|
2014-01-31 07:03:20 -06:00
|
|
|
|
fn reserve(&mut self, n: uint) {
|
|
|
|
|
self.reserve_exact(checked_next_power_of_two(n).unwrap_or(n));
|
2013-09-10 16:29:10 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
|
fn reserve_additional(&mut self, n: uint) {
|
|
|
|
|
if self.capacity() - self.len() < n {
|
|
|
|
|
match self.len().checked_add(&n) {
|
2013-10-21 15:08:31 -05:00
|
|
|
|
None => fail!("vec::reserve_additional: `uint` overflow"),
|
2014-01-31 07:03:20 -06:00
|
|
|
|
Some(new_cap) => self.reserve(new_cap)
|
2013-09-10 16:29:10 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
2013-06-27 09:40:47 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[inline]
|
2014-01-14 01:46:58 -06:00
|
|
|
|
fn capacity(&self) -> uint {
|
|
|
|
|
unsafe {
|
2014-02-14 17:42:01 -06:00
|
|
|
|
let repr: **Vec<()> = transmute(self);
|
2014-01-14 01:46:58 -06:00
|
|
|
|
(**repr).alloc / mem::nonzero_size_of::<T>()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-08-19 13:17:10 -05:00
|
|
|
|
fn shrink_to_fit(&mut self) {
|
|
|
|
|
unsafe {
|
2014-02-14 17:42:01 -06:00
|
|
|
|
let ptr: *mut *mut Vec<()> = transmute(self);
|
2013-08-19 13:17:10 -05:00
|
|
|
|
let alloc = (**ptr).fill;
|
2013-10-16 20:34:01 -05:00
|
|
|
|
let size = alloc + mem::size_of::<Vec<()>>();
|
2013-12-12 15:27:26 -06:00
|
|
|
|
*ptr = realloc_raw(*ptr as *mut u8, size) as *mut Vec<()>;
|
2013-08-19 13:17:10 -05:00
|
|
|
|
(**ptr).alloc = alloc;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-01-07 10:17:03 -06:00
|
|
|
|
#[inline]
|
2014-01-14 01:46:58 -06:00
|
|
|
|
fn push(&mut self, t: T) {
|
|
|
|
|
unsafe {
|
2014-02-14 17:42:01 -06:00
|
|
|
|
let repr: **Vec<()> = transmute(&mut *self);
|
2014-01-14 01:46:58 -06:00
|
|
|
|
let fill = (**repr).fill;
|
|
|
|
|
if (**repr).alloc <= fill {
|
|
|
|
|
self.reserve_additional(1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
push_fast(self, t);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// This doesn't bother to make sure we have space.
|
|
|
|
|
#[inline] // really pretty please
|
|
|
|
|
unsafe fn push_fast<T>(this: &mut ~[T], t: T) {
|
2014-02-14 17:42:01 -06:00
|
|
|
|
let repr: **mut Vec<u8> = transmute(this);
|
2014-01-14 01:46:58 -06:00
|
|
|
|
let fill = (**repr).fill;
|
|
|
|
|
(**repr).fill += mem::nonzero_size_of::<T>();
|
2014-02-14 17:42:01 -06:00
|
|
|
|
let p = &((**repr).data) as *u8;
|
2014-02-10 15:50:42 -06:00
|
|
|
|
let p = p.offset(fill as int) as *mut T;
|
2014-02-09 00:16:42 -06:00
|
|
|
|
mem::move_val_init(&mut(*p), t);
|
2014-01-14 01:46:58 -06:00
|
|
|
|
}
|
2013-07-15 13:23:42 -05:00
|
|
|
|
}
|
|
|
|
|
|
2013-06-27 08:53:37 -05:00
|
|
|
|
#[inline]
|
|
|
|
|
fn push_all_move(&mut self, mut rhs: ~[T]) {
|
2013-06-20 14:13:22 -05:00
|
|
|
|
let self_len = self.len();
|
|
|
|
|
let rhs_len = rhs.len();
|
|
|
|
|
let new_len = self_len + rhs_len;
|
2013-09-10 16:29:10 -05:00
|
|
|
|
self.reserve_additional(rhs.len());
|
2013-06-20 14:13:22 -05:00
|
|
|
|
unsafe { // Note: infallible.
|
2013-12-15 06:35:12 -06:00
|
|
|
|
let self_p = self.as_mut_ptr();
|
|
|
|
|
let rhs_p = rhs.as_ptr();
|
2014-02-10 15:50:42 -06:00
|
|
|
|
ptr::copy_memory(self_p.offset(self_len as int), rhs_p, rhs_len);
|
2013-12-15 06:05:30 -06:00
|
|
|
|
self.set_len(new_len);
|
|
|
|
|
rhs.set_len(0);
|
2013-06-27 08:53:37 -05:00
|
|
|
|
}
|
2012-09-26 19:33:34 -05:00
|
|
|
|
}
|
2012-09-28 00:20:47 -05:00
|
|
|
|
|
2013-12-23 09:20:52 -06:00
|
|
|
|
fn pop(&mut self) -> Option<T> {
|
2013-07-05 13:32:25 -05:00
|
|
|
|
match self.len() {
|
|
|
|
|
0 => None,
|
|
|
|
|
ln => {
|
2014-02-14 17:42:01 -06:00
|
|
|
|
let valptr = &mut self[ln - 1u] as *mut T;
|
2013-07-05 13:32:25 -05:00
|
|
|
|
unsafe {
|
2013-12-15 06:05:30 -06:00
|
|
|
|
self.set_len(ln - 1u);
|
2014-02-14 17:42:01 -06:00
|
|
|
|
Some(ptr::read(&*valptr))
|
2013-07-05 13:32:25 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
2013-06-27 07:59:52 -05:00
|
|
|
|
}
|
2012-09-28 00:20:47 -05:00
|
|
|
|
}
|
|
|
|
|
|
2013-07-05 13:32:25 -05:00
|
|
|
|
|
2013-07-05 13:32:25 -05:00
|
|
|
|
#[inline]
|
2013-12-23 09:40:42 -06:00
|
|
|
|
fn shift(&mut self) -> Option<T> {
|
2013-12-23 09:53:20 -06:00
|
|
|
|
self.remove(0)
|
2012-09-28 00:20:47 -05:00
|
|
|
|
}
|
|
|
|
|
|
2013-12-23 09:40:42 -06:00
|
|
|
|
#[inline]
|
2012-10-02 13:37:37 -05:00
|
|
|
|
fn unshift(&mut self, x: T) {
|
2013-12-18 20:23:37 -06:00
|
|
|
|
self.insert(0, x)
|
2012-09-28 00:20:47 -05:00
|
|
|
|
}
|
2013-12-18 20:23:37 -06:00
|
|
|
|
|
|
|
|
|
fn insert(&mut self, i: uint, x: T) {
|
2013-06-27 07:59:52 -05:00
|
|
|
|
let len = self.len();
|
|
|
|
|
assert!(i <= len);
|
2013-12-18 20:23:37 -06:00
|
|
|
|
// space for the new element
|
|
|
|
|
self.reserve_additional(1);
|
|
|
|
|
|
|
|
|
|
unsafe { // infallible
|
|
|
|
|
// The spot to put the new value
|
|
|
|
|
let p = self.as_mut_ptr().offset(i as int);
|
|
|
|
|
// Shift everything over to make space. (Duplicating the
|
|
|
|
|
// `i`th element into two consecutive places.)
|
2014-01-31 16:01:59 -06:00
|
|
|
|
ptr::copy_memory(p.offset(1), &*p, len - i);
|
2013-12-18 20:23:37 -06:00
|
|
|
|
// Write it in, overwriting the first copy of the `i`th
|
|
|
|
|
// element.
|
2014-02-09 00:16:42 -06:00
|
|
|
|
mem::move_val_init(&mut *p, x);
|
2013-12-18 20:23:37 -06:00
|
|
|
|
self.set_len(len + 1);
|
2013-06-27 07:59:52 -05:00
|
|
|
|
}
|
2012-11-25 07:28:16 -06:00
|
|
|
|
}
|
2013-12-18 20:23:37 -06:00
|
|
|
|
|
2013-12-23 09:53:20 -06:00
|
|
|
|
fn remove(&mut self, i: uint) -> Option<T> {
|
2013-06-27 07:59:52 -05:00
|
|
|
|
let len = self.len();
|
2013-12-18 20:56:53 -06:00
|
|
|
|
if i < len {
|
|
|
|
|
unsafe { // infallible
|
|
|
|
|
// the place we are taking from.
|
|
|
|
|
let ptr = self.as_mut_ptr().offset(i as int);
|
|
|
|
|
// copy it out, unsafely having a copy of the value on
|
|
|
|
|
// the stack and in the vector at the same time.
|
2014-02-14 17:42:01 -06:00
|
|
|
|
let ret = Some(ptr::read(ptr as *T));
|
2013-12-18 20:56:53 -06:00
|
|
|
|
|
|
|
|
|
// Shift everything down to fill in that spot.
|
2014-01-31 16:01:59 -06:00
|
|
|
|
ptr::copy_memory(ptr, &*ptr.offset(1), len - i - 1);
|
2013-12-18 20:56:53 -06:00
|
|
|
|
self.set_len(len - 1);
|
2013-06-27 07:59:52 -05:00
|
|
|
|
|
2013-12-18 20:56:53 -06:00
|
|
|
|
ret
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
None
|
2013-06-27 07:59:52 -05:00
|
|
|
|
}
|
2012-11-25 07:28:16 -06:00
|
|
|
|
}
|
2012-09-28 00:20:47 -05:00
|
|
|
|
fn swap_remove(&mut self, index: uint) -> T {
|
2013-06-27 07:59:52 -05:00
|
|
|
|
let ln = self.len();
|
|
|
|
|
if index >= ln {
|
2013-10-21 15:08:31 -05:00
|
|
|
|
fail!("vec::swap_remove - index {} >= length {}", index, ln);
|
2013-06-27 07:59:52 -05:00
|
|
|
|
}
|
|
|
|
|
if index < ln - 1 {
|
2013-06-28 11:54:03 -05:00
|
|
|
|
self.swap(index, ln - 1);
|
2013-06-27 07:59:52 -05:00
|
|
|
|
}
|
2013-12-23 09:40:42 -06:00
|
|
|
|
self.pop().unwrap()
|
2012-09-28 00:20:47 -05:00
|
|
|
|
}
|
|
|
|
|
fn truncate(&mut self, newlen: uint) {
|
2013-12-17 09:13:20 -06:00
|
|
|
|
let oldlen = self.len();
|
|
|
|
|
assert!(newlen <= oldlen);
|
|
|
|
|
|
|
|
|
|
unsafe {
|
|
|
|
|
let p = self.as_mut_ptr();
|
|
|
|
|
// This loop is optimized out for non-drop types.
|
|
|
|
|
for i in range(newlen, oldlen) {
|
2014-02-14 17:42:01 -06:00
|
|
|
|
ptr::read_and_zero(p.offset(i as int));
|
2013-06-27 08:58:07 -05:00
|
|
|
|
}
|
2013-12-17 09:13:20 -06:00
|
|
|
|
}
|
2013-12-15 06:05:30 -06:00
|
|
|
|
unsafe { self.set_len(newlen); }
|
2012-09-28 00:20:47 -05:00
|
|
|
|
}
|
2012-10-19 08:01:01 -05:00
|
|
|
|
|
2013-11-18 23:15:42 -06:00
|
|
|
|
fn retain(&mut self, f: |t: &T| -> bool) {
|
2013-06-27 09:01:21 -05:00
|
|
|
|
let len = self.len();
|
|
|
|
|
let mut deleted: uint = 0;
|
|
|
|
|
|
2013-08-03 11:45:23 -05:00
|
|
|
|
for i in range(0u, len) {
|
2013-06-27 09:01:21 -05:00
|
|
|
|
if !f(&self[i]) {
|
|
|
|
|
deleted += 1;
|
|
|
|
|
} else if deleted > 0 {
|
2013-06-28 11:54:03 -05:00
|
|
|
|
self.swap(i - deleted, i);
|
2013-06-27 09:01:21 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if deleted > 0 {
|
|
|
|
|
self.truncate(len - deleted);
|
|
|
|
|
}
|
2012-10-19 08:01:01 -05:00
|
|
|
|
}
|
2013-01-07 10:17:03 -06:00
|
|
|
|
|
2013-01-07 10:49:41 -06:00
|
|
|
|
#[inline]
|
2013-11-18 23:15:42 -06:00
|
|
|
|
fn partition(self, f: |&T| -> bool) -> (~[T], ~[T]) {
|
2013-06-27 09:10:18 -05:00
|
|
|
|
let mut lefts = ~[];
|
|
|
|
|
let mut rights = ~[];
|
|
|
|
|
|
2013-08-07 21:21:36 -05:00
|
|
|
|
for elt in self.move_iter() {
|
2013-06-27 09:10:18 -05:00
|
|
|
|
if f(&elt) {
|
|
|
|
|
lefts.push(elt);
|
|
|
|
|
} else {
|
|
|
|
|
rights.push(elt);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
(lefts, rights)
|
2013-01-07 10:49:41 -06:00
|
|
|
|
}
|
2013-11-18 23:15:42 -06:00
|
|
|
|
fn grow_fn(&mut self, n: uint, op: |uint| -> T) {
|
2013-06-28 23:02:20 -05:00
|
|
|
|
let new_len = self.len() + n;
|
2014-01-31 07:03:20 -06:00
|
|
|
|
self.reserve(new_len);
|
2013-06-28 23:02:20 -05:00
|
|
|
|
let mut i: uint = 0u;
|
|
|
|
|
while i < n {
|
|
|
|
|
self.push(op(i));
|
|
|
|
|
i += 1u;
|
|
|
|
|
}
|
2013-02-17 13:08:04 -06:00
|
|
|
|
}
|
2014-01-14 01:46:58 -06:00
|
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
|
unsafe fn set_len(&mut self, new_len: uint) {
|
2014-02-14 17:42:01 -06:00
|
|
|
|
let repr: **mut Vec<()> = transmute(self);
|
2014-01-14 01:46:58 -06:00
|
|
|
|
(**repr).fill = new_len * mem::nonzero_size_of::<T>();
|
|
|
|
|
}
|
2012-09-26 19:33:34 -05:00
|
|
|
|
}
|
|
|
|
|
|
2013-02-14 13:47:00 -06:00
|
|
|
|
impl<T> Mutable for ~[T] {
|
2013-01-24 22:08:16 -06:00
|
|
|
|
/// Clear the vector, removing all values.
|
|
|
|
|
fn clear(&mut self) { self.truncate(0) }
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-14 06:21:47 -05:00
|
|
|
|
/// Extension methods for owned vectors containing `Clone` elements.
|
2014-01-28 16:40:36 -06:00
|
|
|
|
pub trait OwnedCloneableVector<T:Clone> {
|
2013-06-27 08:53:37 -05:00
|
|
|
|
/// Iterates over the slice `rhs`, copies each element, and then appends it to
|
|
|
|
|
/// the vector provided `v`. The `rhs` vector is traversed in-order.
|
|
|
|
|
///
|
|
|
|
|
/// # Example
|
|
|
|
|
///
|
2013-09-23 19:20:36 -05:00
|
|
|
|
/// ```rust
|
2013-06-27 08:53:37 -05:00
|
|
|
|
/// let mut a = ~[1];
|
|
|
|
|
/// a.push_all([2, 3, 4]);
|
|
|
|
|
/// assert!(a == ~[1, 2, 3, 4]);
|
2013-09-23 19:20:36 -05:00
|
|
|
|
/// ```
|
2013-10-14 06:21:47 -05:00
|
|
|
|
fn push_all(&mut self, rhs: &[T]);
|
2012-09-28 00:20:47 -05:00
|
|
|
|
|
2013-06-28 23:02:20 -05:00
|
|
|
|
/**
|
|
|
|
|
* Expands a vector in place, initializing the new elements to a given value
|
|
|
|
|
*
|
|
|
|
|
* # Arguments
|
|
|
|
|
*
|
|
|
|
|
* * n - The number of elements to add
|
|
|
|
|
* * initval - The value for the new elements
|
|
|
|
|
*/
|
2013-10-14 06:21:47 -05:00
|
|
|
|
fn grow(&mut self, n: uint, initval: &T);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Sets the value of a vector element at a given index, growing the vector as
|
|
|
|
|
* needed
|
|
|
|
|
*
|
|
|
|
|
* Sets the element at position `index` to `val`. If `index` is past the end
|
|
|
|
|
* of the vector, expands the vector by replicating `initval` to fill the
|
|
|
|
|
* intervening space.
|
|
|
|
|
*/
|
|
|
|
|
fn grow_set(&mut self, index: uint, initval: &T, val: T);
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-28 16:40:36 -06:00
|
|
|
|
impl<T:Clone> OwnedCloneableVector<T> for ~[T] {
|
2013-10-14 06:21:47 -05:00
|
|
|
|
#[inline]
|
|
|
|
|
fn push_all(&mut self, rhs: &[T]) {
|
|
|
|
|
let new_len = self.len() + rhs.len();
|
2014-01-31 07:03:20 -06:00
|
|
|
|
self.reserve_exact(new_len);
|
2013-10-14 06:21:47 -05:00
|
|
|
|
|
|
|
|
|
for elt in rhs.iter() {
|
|
|
|
|
self.push((*elt).clone())
|
|
|
|
|
}
|
|
|
|
|
}
|
2012-09-28 00:20:47 -05:00
|
|
|
|
fn grow(&mut self, n: uint, initval: &T) {
|
2013-06-28 23:02:20 -05:00
|
|
|
|
let new_len = self.len() + n;
|
2014-01-31 07:03:20 -06:00
|
|
|
|
self.reserve(new_len);
|
2013-06-28 23:02:20 -05:00
|
|
|
|
let mut i: uint = 0u;
|
|
|
|
|
|
|
|
|
|
while i < n {
|
2013-07-02 14:47:32 -05:00
|
|
|
|
self.push((*initval).clone());
|
2013-06-28 23:02:20 -05:00
|
|
|
|
i += 1u;
|
|
|
|
|
}
|
2012-09-28 00:20:47 -05:00
|
|
|
|
}
|
2012-10-02 13:37:37 -05:00
|
|
|
|
fn grow_set(&mut self, index: uint, initval: &T, val: T) {
|
2013-06-28 23:02:20 -05:00
|
|
|
|
let l = self.len();
|
|
|
|
|
if index >= l { self.grow(index - l + 1u, initval); }
|
|
|
|
|
self[index] = val;
|
2012-09-28 00:20:47 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-14 06:21:47 -05:00
|
|
|
|
/// Extension methods for owned vectors containing `Eq` elements.
|
2013-06-28 22:41:09 -05:00
|
|
|
|
pub trait OwnedEqVector<T:Eq> {
|
|
|
|
|
/**
|
2013-06-20 14:13:22 -05:00
|
|
|
|
* Remove consecutive repeated elements from a vector; if the vector is
|
|
|
|
|
* sorted, this removes all duplicates.
|
|
|
|
|
*/
|
2013-10-14 06:21:47 -05:00
|
|
|
|
fn dedup(&mut self);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl<T:Eq> OwnedEqVector<T> for ~[T] {
|
2013-08-09 03:25:24 -05:00
|
|
|
|
fn dedup(&mut self) {
|
2013-06-28 22:41:09 -05:00
|
|
|
|
unsafe {
|
2013-06-20 14:13:22 -05:00
|
|
|
|
// Although we have a mutable reference to `self`, we cannot make
|
2014-01-11 18:25:51 -06:00
|
|
|
|
// *arbitrary* changes. The `Eq` comparisons could fail, so we
|
|
|
|
|
// must ensure that the vector is in a valid state at all time.
|
2013-06-20 14:13:22 -05:00
|
|
|
|
//
|
|
|
|
|
// The way that we handle this is by using swaps; we iterate
|
|
|
|
|
// over all the elements, swapping as we go so that at the end
|
|
|
|
|
// the elements we wish to keep are in the front, and those we
|
|
|
|
|
// wish to reject are at the back. We can then truncate the
|
|
|
|
|
// vector. This operation is still O(n).
|
|
|
|
|
//
|
|
|
|
|
// Example: We start in this state, where `r` represents "next
|
|
|
|
|
// read" and `w` represents "next_write`.
|
|
|
|
|
//
|
|
|
|
|
// r
|
|
|
|
|
// +---+---+---+---+---+---+
|
|
|
|
|
// | 0 | 1 | 1 | 2 | 3 | 3 |
|
|
|
|
|
// +---+---+---+---+---+---+
|
|
|
|
|
// w
|
|
|
|
|
//
|
|
|
|
|
// Comparing self[r] against self[w-1], tis is not a duplicate, so
|
|
|
|
|
// we swap self[r] and self[w] (no effect as r==w) and then increment both
|
|
|
|
|
// r and w, leaving us with:
|
|
|
|
|
//
|
|
|
|
|
// r
|
|
|
|
|
// +---+---+---+---+---+---+
|
|
|
|
|
// | 0 | 1 | 1 | 2 | 3 | 3 |
|
|
|
|
|
// +---+---+---+---+---+---+
|
|
|
|
|
// w
|
|
|
|
|
//
|
|
|
|
|
// Comparing self[r] against self[w-1], this value is a duplicate,
|
|
|
|
|
// so we increment `r` but leave everything else unchanged:
|
|
|
|
|
//
|
|
|
|
|
// r
|
|
|
|
|
// +---+---+---+---+---+---+
|
|
|
|
|
// | 0 | 1 | 1 | 2 | 3 | 3 |
|
|
|
|
|
// +---+---+---+---+---+---+
|
|
|
|
|
// w
|
|
|
|
|
//
|
|
|
|
|
// Comparing self[r] against self[w-1], this is not a duplicate,
|
|
|
|
|
// so swap self[r] and self[w] and advance r and w:
|
|
|
|
|
//
|
|
|
|
|
// r
|
|
|
|
|
// +---+---+---+---+---+---+
|
|
|
|
|
// | 0 | 1 | 2 | 1 | 3 | 3 |
|
|
|
|
|
// +---+---+---+---+---+---+
|
|
|
|
|
// w
|
|
|
|
|
//
|
|
|
|
|
// Not a duplicate, repeat:
|
|
|
|
|
//
|
|
|
|
|
// r
|
|
|
|
|
// +---+---+---+---+---+---+
|
|
|
|
|
// | 0 | 1 | 2 | 3 | 1 | 3 |
|
|
|
|
|
// +---+---+---+---+---+---+
|
|
|
|
|
// w
|
|
|
|
|
//
|
|
|
|
|
// Duplicate, advance r. End of vec. Truncate to w.
|
|
|
|
|
|
|
|
|
|
let ln = self.len();
|
|
|
|
|
if ln < 1 { return; }
|
|
|
|
|
|
|
|
|
|
// Avoid bounds checks by using unsafe pointers.
|
2013-12-15 06:35:12 -06:00
|
|
|
|
let p = self.as_mut_ptr();
|
2013-06-20 14:13:22 -05:00
|
|
|
|
let mut r = 1;
|
|
|
|
|
let mut w = 1;
|
|
|
|
|
|
|
|
|
|
while r < ln {
|
2014-02-10 15:50:42 -06:00
|
|
|
|
let p_r = p.offset(r as int);
|
|
|
|
|
let p_wm1 = p.offset((w - 1) as int);
|
2013-06-20 14:13:22 -05:00
|
|
|
|
if *p_r != *p_wm1 {
|
|
|
|
|
if r != w {
|
2014-02-10 15:50:42 -06:00
|
|
|
|
let p_w = p_wm1.offset(1);
|
2014-01-31 14:35:36 -06:00
|
|
|
|
mem::swap(&mut *p_r, &mut *p_w);
|
2013-06-28 22:41:09 -05:00
|
|
|
|
}
|
2013-06-20 14:13:22 -05:00
|
|
|
|
w += 1;
|
2013-06-28 22:41:09 -05:00
|
|
|
|
}
|
2013-06-20 14:13:22 -05:00
|
|
|
|
r += 1;
|
2013-06-28 22:41:09 -05:00
|
|
|
|
}
|
2013-06-20 14:13:22 -05:00
|
|
|
|
|
|
|
|
|
self.truncate(w);
|
2013-06-28 22:41:09 -05:00
|
|
|
|
}
|
2012-09-28 00:20:47 -05:00
|
|
|
|
}
|
2012-09-26 19:33:34 -05:00
|
|
|
|
}
|
|
|
|
|
|
2014-02-04 11:56:13 -06:00
|
|
|
|
fn insertion_sort<T>(v: &mut [T], compare: |&T, &T| -> Ordering) {
|
|
|
|
|
let len = v.len() as int;
|
|
|
|
|
let buf_v = v.as_mut_ptr();
|
|
|
|
|
|
|
|
|
|
// 1 <= i < len;
|
|
|
|
|
for i in range(1, len) {
|
|
|
|
|
// j satisfies: 0 <= j <= i;
|
|
|
|
|
let mut j = i;
|
|
|
|
|
unsafe {
|
|
|
|
|
// `i` is in bounds.
|
|
|
|
|
let read_ptr = buf_v.offset(i) as *T;
|
|
|
|
|
|
|
|
|
|
// find where to insert, we need to do strict <,
|
|
|
|
|
// rather than <=, to maintain stability.
|
|
|
|
|
|
|
|
|
|
// 0 <= j - 1 < len, so .offset(j - 1) is in bounds.
|
|
|
|
|
while j > 0 &&
|
|
|
|
|
compare(&*read_ptr, &*buf_v.offset(j - 1)) == Less {
|
|
|
|
|
j -= 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// shift everything to the right, to make space to
|
|
|
|
|
// insert this value.
|
|
|
|
|
|
|
|
|
|
// j + 1 could be `len` (for the last `i`), but in
|
|
|
|
|
// that case, `i == j` so we don't copy. The
|
|
|
|
|
// `.offset(j)` is always in bounds.
|
|
|
|
|
|
|
|
|
|
if i != j {
|
2014-02-14 17:42:01 -06:00
|
|
|
|
let tmp = ptr::read(read_ptr);
|
2014-02-04 11:56:13 -06:00
|
|
|
|
ptr::copy_memory(buf_v.offset(j + 1),
|
2014-01-31 16:01:59 -06:00
|
|
|
|
&*buf_v.offset(j),
|
2014-02-04 11:56:13 -06:00
|
|
|
|
(i - j) as uint);
|
|
|
|
|
ptr::copy_nonoverlapping_memory(buf_v.offset(j),
|
|
|
|
|
&tmp as *T,
|
|
|
|
|
1);
|
|
|
|
|
cast::forget(tmp);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-19 21:42:00 -06:00
|
|
|
|
fn merge_sort<T>(v: &mut [T], compare: |&T, &T| -> Ordering) {
|
2013-12-18 16:24:26 -06:00
|
|
|
|
// warning: this wildly uses unsafe.
|
2014-02-04 11:56:13 -06:00
|
|
|
|
static BASE_INSERTION: uint = 32;
|
|
|
|
|
static LARGE_INSERTION: uint = 16;
|
|
|
|
|
|
|
|
|
|
// FIXME #12092: smaller insertion runs seems to make sorting
|
|
|
|
|
// vectors of large elements a little faster on some platforms,
|
|
|
|
|
// but hasn't been tested/tuned extensively
|
|
|
|
|
let insertion = if size_of::<T>() <= 16 {
|
|
|
|
|
BASE_INSERTION
|
|
|
|
|
} else {
|
|
|
|
|
LARGE_INSERTION
|
|
|
|
|
};
|
2013-12-18 16:24:26 -06:00
|
|
|
|
|
|
|
|
|
let len = v.len();
|
|
|
|
|
|
2014-02-04 11:56:13 -06:00
|
|
|
|
// short vectors get sorted in-place via insertion sort to avoid allocations
|
|
|
|
|
if len <= insertion {
|
|
|
|
|
insertion_sort(v, compare);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-18 16:24:26 -06:00
|
|
|
|
// allocate some memory to use as scratch memory, we keep the
|
|
|
|
|
// length 0 so we can keep shallow copies of the contents of `v`
|
|
|
|
|
// without risking the dtors running on an object twice if
|
2013-12-19 21:42:00 -06:00
|
|
|
|
// `compare` fails.
|
2013-12-18 16:24:26 -06:00
|
|
|
|
let mut working_space = with_capacity(2 * len);
|
|
|
|
|
// these both are buffers of length `len`.
|
|
|
|
|
let mut buf_dat = working_space.as_mut_ptr();
|
|
|
|
|
let mut buf_tmp = unsafe {buf_dat.offset(len as int)};
|
|
|
|
|
|
|
|
|
|
// length `len`.
|
|
|
|
|
let buf_v = v.as_ptr();
|
|
|
|
|
|
|
|
|
|
// step 1. sort short runs with insertion sort. This takes the
|
|
|
|
|
// values from `v` and sorts them into `buf_dat`, leaving that
|
|
|
|
|
// with sorted runs of length INSERTION.
|
|
|
|
|
|
|
|
|
|
// We could hardcode the sorting comparisons here, and we could
|
|
|
|
|
// manipulate/step the pointers themselves, rather than repeatedly
|
|
|
|
|
// .offset-ing.
|
2014-02-04 11:56:13 -06:00
|
|
|
|
for start in range_step(0, len, insertion) {
|
|
|
|
|
// start <= i < len;
|
|
|
|
|
for i in range(start, cmp::min(start + insertion, len)) {
|
2013-12-18 16:24:26 -06:00
|
|
|
|
// j satisfies: start <= j <= i;
|
|
|
|
|
let mut j = i as int;
|
|
|
|
|
unsafe {
|
|
|
|
|
// `i` is in bounds.
|
|
|
|
|
let read_ptr = buf_v.offset(i as int);
|
|
|
|
|
|
|
|
|
|
// find where to insert, we need to do strict <,
|
|
|
|
|
// rather than <=, to maintain stability.
|
|
|
|
|
|
|
|
|
|
// start <= j - 1 < len, so .offset(j - 1) is in
|
|
|
|
|
// bounds.
|
2013-12-19 21:42:00 -06:00
|
|
|
|
while j > start as int &&
|
|
|
|
|
compare(&*read_ptr, &*buf_dat.offset(j - 1)) == Less {
|
2013-12-18 16:24:26 -06:00
|
|
|
|
j -= 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// shift everything to the right, to make space to
|
|
|
|
|
// insert this value.
|
|
|
|
|
|
|
|
|
|
// j + 1 could be `len` (for the last `i`), but in
|
|
|
|
|
// that case, `i == j` so we don't copy. The
|
|
|
|
|
// `.offset(j)` is always in bounds.
|
|
|
|
|
ptr::copy_memory(buf_dat.offset(j + 1),
|
2014-01-31 16:01:59 -06:00
|
|
|
|
&*buf_dat.offset(j),
|
2013-12-18 16:24:26 -06:00
|
|
|
|
i - j as uint);
|
|
|
|
|
ptr::copy_nonoverlapping_memory(buf_dat.offset(j), read_ptr, 1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// step 2. merge the sorted runs.
|
2014-02-04 11:56:13 -06:00
|
|
|
|
let mut width = insertion;
|
2013-12-18 16:24:26 -06:00
|
|
|
|
while width < len {
|
|
|
|
|
// merge the sorted runs of length `width` in `buf_dat` two at
|
|
|
|
|
// a time, placing the result in `buf_tmp`.
|
|
|
|
|
|
|
|
|
|
// 0 <= start <= len.
|
|
|
|
|
for start in range_step(0, len, 2 * width) {
|
|
|
|
|
// manipulate pointers directly for speed (rather than
|
|
|
|
|
// using a `for` loop with `range` and `.offset` inside
|
|
|
|
|
// that loop).
|
|
|
|
|
unsafe {
|
|
|
|
|
// the end of the first run & start of the
|
|
|
|
|
// second. Offset of `len` is defined, since this is
|
|
|
|
|
// precisely one byte past the end of the object.
|
|
|
|
|
let right_start = buf_dat.offset(cmp::min(start + width, len) as int);
|
|
|
|
|
// end of the second. Similar reasoning to the above re safety.
|
|
|
|
|
let right_end_idx = cmp::min(start + 2 * width, len);
|
|
|
|
|
let right_end = buf_dat.offset(right_end_idx as int);
|
|
|
|
|
|
|
|
|
|
// the pointers to the elements under consideration
|
|
|
|
|
// from the two runs.
|
|
|
|
|
|
|
|
|
|
// both of these are in bounds.
|
|
|
|
|
let mut left = buf_dat.offset(start as int);
|
|
|
|
|
let mut right = right_start;
|
|
|
|
|
|
|
|
|
|
// where we're putting the results, it is a run of
|
|
|
|
|
// length `2*width`, so we step it once for each step
|
|
|
|
|
// of either `left` or `right`. `buf_tmp` has length
|
|
|
|
|
// `len`, so these are in bounds.
|
|
|
|
|
let mut out = buf_tmp.offset(start as int);
|
|
|
|
|
let out_end = buf_tmp.offset(right_end_idx as int);
|
|
|
|
|
|
|
|
|
|
while out < out_end {
|
|
|
|
|
// Either the left or the right run are exhausted,
|
|
|
|
|
// so just copy the remainder from the other run
|
|
|
|
|
// and move on; this gives a huge speed-up (order
|
|
|
|
|
// of 25%) for mostly sorted vectors (the best
|
|
|
|
|
// case).
|
|
|
|
|
if left == right_start {
|
|
|
|
|
// the number remaining in this run.
|
|
|
|
|
let elems = (right_end as uint - right as uint) / mem::size_of::<T>();
|
2014-01-31 16:01:59 -06:00
|
|
|
|
ptr::copy_nonoverlapping_memory(out, &*right, elems);
|
2013-12-18 16:24:26 -06:00
|
|
|
|
break;
|
|
|
|
|
} else if right == right_end {
|
|
|
|
|
let elems = (right_start as uint - left as uint) / mem::size_of::<T>();
|
2014-01-31 16:01:59 -06:00
|
|
|
|
ptr::copy_nonoverlapping_memory(out, &*left, elems);
|
2013-12-18 16:24:26 -06:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// check which side is smaller, and that's the
|
|
|
|
|
// next element for the new run.
|
|
|
|
|
|
|
|
|
|
// `left < right_start` and `right < right_end`,
|
|
|
|
|
// so these are valid.
|
2013-12-19 21:42:00 -06:00
|
|
|
|
let to_copy = if compare(&*left, &*right) == Greater {
|
2013-12-18 16:24:26 -06:00
|
|
|
|
step(&mut right)
|
2013-12-19 21:42:00 -06:00
|
|
|
|
} else {
|
|
|
|
|
step(&mut left)
|
2013-12-18 16:24:26 -06:00
|
|
|
|
};
|
2014-01-31 16:01:59 -06:00
|
|
|
|
ptr::copy_nonoverlapping_memory(out, &*to_copy, 1);
|
2013-12-18 16:24:26 -06:00
|
|
|
|
step(&mut out);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-31 14:35:36 -06:00
|
|
|
|
mem::swap(&mut buf_dat, &mut buf_tmp);
|
2013-12-18 16:24:26 -06:00
|
|
|
|
|
|
|
|
|
width *= 2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// write the result to `v` in one go, so that there are never two copies
|
|
|
|
|
// of the same object in `v`.
|
|
|
|
|
unsafe {
|
2014-01-31 16:01:59 -06:00
|
|
|
|
ptr::copy_nonoverlapping_memory(v.as_mut_ptr(), &*buf_dat, len);
|
2013-12-18 16:24:26 -06:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// increment the pointer, returning the old pointer.
|
|
|
|
|
#[inline(always)]
|
|
|
|
|
unsafe fn step<T>(ptr: &mut *mut T) -> *mut T {
|
|
|
|
|
let old = *ptr;
|
|
|
|
|
*ptr = ptr.offset(1);
|
|
|
|
|
old
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-14 06:21:47 -05:00
|
|
|
|
/// Extension methods for vectors such that their elements are
|
|
|
|
|
/// mutable.
|
2013-12-10 01:16:18 -06:00
|
|
|
|
pub trait MutableVector<'a, T> {
|
2013-12-09 16:45:53 -06:00
|
|
|
|
/// Work with `self` as a mut slice.
|
|
|
|
|
/// Primarily intended for getting a &mut [T] from a [T, ..N].
|
|
|
|
|
fn as_mut_slice(self) -> &'a mut [T];
|
|
|
|
|
|
2013-10-14 06:21:47 -05:00
|
|
|
|
/// Return a slice that points into another slice.
|
2013-12-10 01:16:18 -06:00
|
|
|
|
fn mut_slice(self, start: uint, end: uint) -> &'a mut [T];
|
2013-11-16 16:29:19 -06:00
|
|
|
|
|
2013-10-14 06:21:47 -05:00
|
|
|
|
/**
|
|
|
|
|
* Returns a slice of self from `start` to the end of the vec.
|
|
|
|
|
*
|
|
|
|
|
* Fails when `start` points outside the bounds of self.
|
|
|
|
|
*/
|
2013-12-10 01:16:18 -06:00
|
|
|
|
fn mut_slice_from(self, start: uint) -> &'a mut [T];
|
2013-11-16 16:29:19 -06:00
|
|
|
|
|
2013-10-14 06:21:47 -05:00
|
|
|
|
/**
|
|
|
|
|
* Returns a slice of self from the start of the vec to `end`.
|
|
|
|
|
*
|
|
|
|
|
* Fails when `end` points outside the bounds of self.
|
|
|
|
|
*/
|
2013-12-10 01:16:18 -06:00
|
|
|
|
fn mut_slice_to(self, end: uint) -> &'a mut [T];
|
2013-11-16 16:29:19 -06:00
|
|
|
|
|
2013-10-14 06:21:47 -05:00
|
|
|
|
/// Returns an iterator that allows modifying each value
|
2014-01-14 21:32:24 -06:00
|
|
|
|
fn mut_iter(self) -> MutItems<'a, T>;
|
2013-11-16 16:29:19 -06:00
|
|
|
|
|
2014-01-15 13:39:08 -06:00
|
|
|
|
/// Returns a mutable pointer to the last item in the vector.
|
2014-01-26 10:24:34 -06:00
|
|
|
|
fn mut_last(self) -> Option<&'a mut T>;
|
2014-01-15 13:39:08 -06:00
|
|
|
|
|
2013-10-14 06:21:47 -05:00
|
|
|
|
/// Returns a reversed iterator that allows modifying each value
|
2014-01-14 21:32:24 -06:00
|
|
|
|
fn mut_rev_iter(self) -> RevMutItems<'a, T>;
|
2013-05-26 20:40:07 -05:00
|
|
|
|
|
2013-12-01 11:50:34 -06:00
|
|
|
|
/// Returns an iterator over the mutable subslices of the vector
|
|
|
|
|
/// which are separated by elements that match `pred`. The
|
|
|
|
|
/// matched element is not contained in the subslices.
|
2014-01-14 21:32:24 -06:00
|
|
|
|
fn mut_split(self, pred: 'a |&T| -> bool) -> MutSplits<'a, T>;
|
2013-12-01 11:50:34 -06:00
|
|
|
|
|
2013-11-30 15:28:42 -06:00
|
|
|
|
/**
|
|
|
|
|
* Returns an iterator over `size` elements of the vector at a time.
|
|
|
|
|
* The chunks are mutable and do not overlap. If `size` does not divide the
|
|
|
|
|
* length of the vector, then the last chunk will not have length
|
|
|
|
|
* `size`.
|
|
|
|
|
*
|
|
|
|
|
* # Failure
|
|
|
|
|
*
|
|
|
|
|
* Fails if `size` is 0.
|
|
|
|
|
*/
|
2014-01-14 21:32:24 -06:00
|
|
|
|
fn mut_chunks(self, chunk_size: uint) -> MutChunks<'a, T>;
|
2013-11-30 15:28:42 -06:00
|
|
|
|
|
2013-11-16 16:29:19 -06:00
|
|
|
|
/**
|
|
|
|
|
* Returns a mutable reference to the first element in this slice
|
|
|
|
|
* and adjusts the slice in place so that it no longer contains
|
|
|
|
|
* that element. O(1).
|
|
|
|
|
*
|
|
|
|
|
* Equivalent to:
|
|
|
|
|
*
|
2014-02-15 01:44:22 -06:00
|
|
|
|
* ```ignore
|
2014-01-25 11:00:46 -06:00
|
|
|
|
* if self.len() == 0 { return None; }
|
2013-11-16 16:29:19 -06:00
|
|
|
|
* let head = &mut self[0];
|
|
|
|
|
* *self = self.mut_slice_from(1);
|
2014-01-25 11:00:46 -06:00
|
|
|
|
* Some(head)
|
2013-11-16 16:29:19 -06:00
|
|
|
|
* ```
|
|
|
|
|
*
|
2014-01-25 11:00:46 -06:00
|
|
|
|
* Returns `None` if slice is empty
|
2013-11-16 16:29:19 -06:00
|
|
|
|
*/
|
2014-01-25 11:00:46 -06:00
|
|
|
|
fn mut_shift_ref(&mut self) -> Option<&'a mut T>;
|
2013-11-16 16:29:19 -06:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Returns a mutable reference to the last element in this slice
|
|
|
|
|
* and adjusts the slice in place so that it no longer contains
|
|
|
|
|
* that element. O(1).
|
|
|
|
|
*
|
|
|
|
|
* Equivalent to:
|
|
|
|
|
*
|
2014-02-15 01:44:22 -06:00
|
|
|
|
* ```ignore
|
2014-01-25 14:33:31 -06:00
|
|
|
|
* if self.len() == 0 { return None; }
|
2013-11-16 16:29:19 -06:00
|
|
|
|
* let tail = &mut self[self.len() - 1];
|
|
|
|
|
* *self = self.mut_slice_to(self.len() - 1);
|
2014-01-25 14:33:31 -06:00
|
|
|
|
* Some(tail)
|
2013-11-16 16:29:19 -06:00
|
|
|
|
* ```
|
|
|
|
|
*
|
2014-01-25 14:33:31 -06:00
|
|
|
|
* Returns `None` if slice is empty.
|
2013-11-16 16:29:19 -06:00
|
|
|
|
*/
|
2014-01-25 14:33:31 -06:00
|
|
|
|
fn mut_pop_ref(&mut self) -> Option<&'a mut T>;
|
2013-11-16 16:29:19 -06:00
|
|
|
|
|
2013-12-24 15:45:31 -06:00
|
|
|
|
/// Swaps two elements in a vector.
|
|
|
|
|
///
|
|
|
|
|
/// Fails if `a` or `b` are out of bounds.
|
|
|
|
|
///
|
|
|
|
|
/// # Arguments
|
|
|
|
|
///
|
|
|
|
|
/// * a - The index of the first element
|
|
|
|
|
/// * b - The index of the second element
|
|
|
|
|
///
|
|
|
|
|
/// # Example
|
|
|
|
|
///
|
|
|
|
|
/// ```rust
|
|
|
|
|
/// let mut v = ["a", "b", "c", "d"];
|
|
|
|
|
/// v.swap(1, 3);
|
|
|
|
|
/// assert_eq!(v, ["a", "d", "c", "b"]);
|
|
|
|
|
/// ```
|
2013-06-28 11:54:03 -05:00
|
|
|
|
fn swap(self, a: uint, b: uint);
|
|
|
|
|
|
2013-12-24 15:45:31 -06:00
|
|
|
|
|
|
|
|
|
/// 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).
|
|
|
|
|
///
|
|
|
|
|
/// Fails if `mid > len`.
|
|
|
|
|
///
|
|
|
|
|
/// # Example
|
|
|
|
|
///
|
|
|
|
|
/// ```rust
|
|
|
|
|
/// let mut v = [1, 2, 3, 4, 5, 6];
|
|
|
|
|
///
|
|
|
|
|
/// // scoped to restrict the lifetime of the borrows
|
|
|
|
|
/// {
|
|
|
|
|
/// let (left, right) = v.mut_split_at(0);
|
|
|
|
|
/// assert_eq!(left, &mut []);
|
|
|
|
|
/// assert_eq!(right, &mut [1, 2, 3, 4, 5, 6]);
|
|
|
|
|
/// }
|
|
|
|
|
///
|
|
|
|
|
/// {
|
|
|
|
|
/// let (left, right) = v.mut_split_at(2);
|
|
|
|
|
/// assert_eq!(left, &mut [1, 2]);
|
|
|
|
|
/// assert_eq!(right, &mut [3, 4, 5, 6]);
|
|
|
|
|
/// }
|
|
|
|
|
///
|
|
|
|
|
/// {
|
|
|
|
|
/// let (left, right) = v.mut_split_at(6);
|
|
|
|
|
/// assert_eq!(left, &mut [1, 2, 3, 4, 5, 6]);
|
|
|
|
|
/// assert_eq!(right, &mut []);
|
|
|
|
|
/// }
|
|
|
|
|
/// ```
|
2013-12-10 01:16:18 -06:00
|
|
|
|
fn mut_split_at(self, mid: uint) -> (&'a mut [T],
|
|
|
|
|
&'a mut [T]);
|
2013-07-10 08:50:24 -05:00
|
|
|
|
|
2013-12-24 15:45:31 -06:00
|
|
|
|
/// Reverse the order of elements in a vector, in place.
|
|
|
|
|
///
|
|
|
|
|
/// # Example
|
|
|
|
|
///
|
|
|
|
|
/// ```rust
|
|
|
|
|
/// let mut v = [1, 2, 3];
|
|
|
|
|
/// v.reverse();
|
|
|
|
|
/// assert_eq!(v, [3, 2, 1]);
|
|
|
|
|
/// ```
|
2013-06-28 11:54:03 -05:00
|
|
|
|
fn reverse(self);
|
|
|
|
|
|
2013-12-19 21:42:00 -06:00
|
|
|
|
/// Sort the vector, in place, using `compare` to compare
|
|
|
|
|
/// elements.
|
2013-12-18 16:24:26 -06:00
|
|
|
|
///
|
|
|
|
|
/// This sort is `O(n log n)` worst-case and stable, but allocates
|
|
|
|
|
/// approximately `2 * n`, where `n` is the length of `self`.
|
|
|
|
|
///
|
|
|
|
|
/// # Example
|
|
|
|
|
///
|
|
|
|
|
/// ```rust
|
2013-12-22 15:31:23 -06:00
|
|
|
|
/// let mut v = [5i, 4, 1, 3, 2];
|
|
|
|
|
/// v.sort_by(|a, b| a.cmp(b));
|
2013-12-18 16:24:26 -06:00
|
|
|
|
/// assert_eq!(v, [1, 2, 3, 4, 5]);
|
|
|
|
|
///
|
|
|
|
|
/// // reverse sorting
|
2013-12-22 15:31:23 -06:00
|
|
|
|
/// v.sort_by(|a, b| b.cmp(a));
|
2013-12-18 16:24:26 -06:00
|
|
|
|
/// assert_eq!(v, [5, 4, 3, 2, 1]);
|
|
|
|
|
/// ```
|
2013-12-19 21:42:00 -06:00
|
|
|
|
fn sort_by(self, compare: |&T, &T| -> Ordering);
|
2013-12-18 16:24:26 -06:00
|
|
|
|
|
2013-06-18 01:52:14 -05:00
|
|
|
|
/**
|
|
|
|
|
* Consumes `src` and moves as many elements as it can into `self`
|
|
|
|
|
* from the range [start,end).
|
|
|
|
|
*
|
|
|
|
|
* Returns the number of elements copied (the shorter of self.len()
|
|
|
|
|
* and end - start).
|
|
|
|
|
*
|
|
|
|
|
* # Arguments
|
|
|
|
|
*
|
|
|
|
|
* * src - A mutable vector of `T`
|
|
|
|
|
* * start - The index into `src` to start copying from
|
|
|
|
|
* * end - The index into `str` to stop copying from
|
|
|
|
|
*/
|
|
|
|
|
fn move_from(self, src: ~[T], start: uint, end: uint) -> uint;
|
|
|
|
|
|
2013-10-14 06:21:47 -05:00
|
|
|
|
/// Returns an unsafe mutable pointer to the element in index
|
2014-01-21 08:34:42 -06:00
|
|
|
|
unsafe fn unsafe_mut_ref(self, index: uint) -> &'a mut T;
|
2013-12-15 06:35:12 -06:00
|
|
|
|
|
|
|
|
|
/// Return an unsafe mutable pointer to the vector's buffer.
|
|
|
|
|
///
|
|
|
|
|
/// The caller must ensure that the vector outlives the pointer this
|
|
|
|
|
/// function returns, or else it will end up pointing to garbage.
|
|
|
|
|
///
|
|
|
|
|
/// Modifying the vector may cause its buffer to be reallocated, which
|
|
|
|
|
/// would also make any pointers to it invalid.
|
|
|
|
|
#[inline]
|
|
|
|
|
fn as_mut_ptr(self) -> *mut T;
|
|
|
|
|
|
2013-12-24 15:45:31 -06:00
|
|
|
|
/// Unsafely sets the element in index to the value.
|
|
|
|
|
///
|
|
|
|
|
/// This performs no bounds checks, and it is undefined behaviour
|
|
|
|
|
/// if `index` is larger than the length of `self`. However, it
|
|
|
|
|
/// does run the destructor at `index`. It is equivalent to
|
|
|
|
|
/// `self[index] = val`.
|
|
|
|
|
///
|
|
|
|
|
/// # Example
|
|
|
|
|
///
|
|
|
|
|
/// ```rust
|
|
|
|
|
/// let mut v = ~[~"foo", ~"bar", ~"baz"];
|
|
|
|
|
///
|
|
|
|
|
/// unsafe {
|
|
|
|
|
/// // `~"baz"` is deallocated.
|
|
|
|
|
/// v.unsafe_set(2, ~"qux");
|
|
|
|
|
///
|
|
|
|
|
/// // Out of bounds: could cause a crash, or overwriting
|
|
|
|
|
/// // other data, or something else.
|
|
|
|
|
/// // v.unsafe_set(10, ~"oops");
|
|
|
|
|
/// }
|
|
|
|
|
/// ```
|
2013-07-21 19:20:52 -05:00
|
|
|
|
unsafe fn unsafe_set(self, index: uint, val: T);
|
2013-07-03 01:34:17 -05:00
|
|
|
|
|
2013-12-23 05:57:16 -06:00
|
|
|
|
/// Unchecked vector index assignment. Does not drop the
|
|
|
|
|
/// old value and hence is only suitable when the vector
|
|
|
|
|
/// is newly allocated.
|
|
|
|
|
///
|
|
|
|
|
/// # Example
|
|
|
|
|
///
|
|
|
|
|
/// ```rust
|
|
|
|
|
/// let mut v = [~"foo", ~"bar"];
|
|
|
|
|
///
|
|
|
|
|
/// // memory leak! `~"bar"` is not deallocated.
|
|
|
|
|
/// unsafe { v.init_elem(1, ~"baz"); }
|
|
|
|
|
/// ```
|
2013-12-16 06:30:56 -06:00
|
|
|
|
unsafe fn init_elem(self, i: uint, val: T);
|
|
|
|
|
|
2013-12-23 05:57:16 -06:00
|
|
|
|
/// Copies raw bytes from `src` to `self`.
|
2013-12-16 06:35:02 -06:00
|
|
|
|
///
|
2013-12-23 05:57:16 -06:00
|
|
|
|
/// This does not run destructors on the overwritten elements, and
|
|
|
|
|
/// ignores move semantics. `self` and `src` must not
|
|
|
|
|
/// overlap. Fails if `self` is shorter than `src`.
|
2013-12-16 06:35:02 -06:00
|
|
|
|
unsafe fn copy_memory(self, src: &[T]);
|
2013-04-17 16:19:25 -05:00
|
|
|
|
}
|
|
|
|
|
|
2013-12-10 01:16:18 -06:00
|
|
|
|
impl<'a,T> MutableVector<'a, T> for &'a mut [T] {
|
2013-05-26 20:40:07 -05:00
|
|
|
|
#[inline]
|
2013-12-09 16:45:53 -06:00
|
|
|
|
fn as_mut_slice(self) -> &'a mut [T] { self }
|
|
|
|
|
|
2013-12-10 01:16:18 -06:00
|
|
|
|
fn mut_slice(self, start: uint, end: uint) -> &'a mut [T] {
|
2013-10-14 23:37:32 -05:00
|
|
|
|
assert!(start <= end);
|
|
|
|
|
assert!(end <= self.len());
|
2013-12-17 09:13:20 -06:00
|
|
|
|
unsafe {
|
2014-02-14 17:42:01 -06:00
|
|
|
|
transmute(Slice {
|
2013-12-17 09:13:20 -06:00
|
|
|
|
data: self.as_mut_ptr().offset(start as int) as *T,
|
2013-10-14 23:37:32 -05:00
|
|
|
|
len: (end - start)
|
|
|
|
|
})
|
2013-12-17 09:13:20 -06:00
|
|
|
|
}
|
2013-10-14 23:37:32 -05:00
|
|
|
|
}
|
|
|
|
|
|
2013-07-26 19:48:56 -05:00
|
|
|
|
#[inline]
|
2013-12-10 01:16:18 -06:00
|
|
|
|
fn mut_slice_from(self, start: uint) -> &'a mut [T] {
|
2013-07-26 19:48:56 -05:00
|
|
|
|
let len = self.len();
|
|
|
|
|
self.mut_slice(start, len)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[inline]
|
2013-12-10 01:16:18 -06:00
|
|
|
|
fn mut_slice_to(self, end: uint) -> &'a mut [T] {
|
2013-07-26 19:48:56 -05:00
|
|
|
|
self.mut_slice(0, end)
|
|
|
|
|
}
|
|
|
|
|
|
2013-07-10 08:50:24 -05:00
|
|
|
|
#[inline]
|
2013-12-10 01:16:18 -06:00
|
|
|
|
fn mut_split_at(self, mid: uint) -> (&'a mut [T], &'a mut [T]) {
|
2013-07-10 08:50:24 -05:00
|
|
|
|
unsafe {
|
|
|
|
|
let len = self.len();
|
2013-12-10 01:16:18 -06:00
|
|
|
|
let self2: &'a mut [T] = cast::transmute_copy(&self);
|
2013-07-10 08:50:24 -05:00
|
|
|
|
(self.mut_slice(0, mid), self2.mut_slice(mid, len))
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-06-06 00:12:39 -05:00
|
|
|
|
#[inline]
|
2014-01-14 21:32:24 -06:00
|
|
|
|
fn mut_iter(self) -> MutItems<'a, T> {
|
2013-06-06 00:12:39 -05:00
|
|
|
|
unsafe {
|
2013-12-15 06:35:12 -06:00
|
|
|
|
let p = self.as_mut_ptr();
|
2013-10-16 20:34:01 -05:00
|
|
|
|
if mem::size_of::<T>() == 0 {
|
2014-01-14 21:32:24 -06:00
|
|
|
|
MutItems{ptr: p,
|
2014-01-22 13:03:02 -06:00
|
|
|
|
end: (p as uint + self.len()) as *mut T,
|
|
|
|
|
marker: marker::ContravariantLifetime::<'a>}
|
2013-08-06 16:15:43 -05:00
|
|
|
|
} else {
|
2014-01-14 21:32:24 -06:00
|
|
|
|
MutItems{ptr: p,
|
2014-01-22 13:03:02 -06:00
|
|
|
|
end: p.offset(self.len() as int),
|
|
|
|
|
marker: marker::ContravariantLifetime::<'a>}
|
2013-08-06 16:15:43 -05:00
|
|
|
|
}
|
2013-06-06 00:12:39 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-15 13:39:08 -06:00
|
|
|
|
#[inline]
|
2014-01-26 10:24:34 -06:00
|
|
|
|
fn mut_last(self) -> Option<&'a mut T> {
|
2014-01-15 13:39:08 -06:00
|
|
|
|
let len = self.len();
|
2014-01-26 10:24:34 -06:00
|
|
|
|
if len == 0 { return None; }
|
|
|
|
|
Some(&mut self[len - 1])
|
2014-01-15 13:39:08 -06:00
|
|
|
|
}
|
|
|
|
|
|
2013-07-10 23:23:59 -05:00
|
|
|
|
#[inline]
|
2014-01-14 21:32:24 -06:00
|
|
|
|
fn mut_rev_iter(self) -> RevMutItems<'a, T> {
|
2014-01-23 13:41:57 -06:00
|
|
|
|
self.mut_iter().rev()
|
2013-06-07 21:39:52 -05:00
|
|
|
|
}
|
|
|
|
|
|
2013-12-01 11:50:34 -06:00
|
|
|
|
#[inline]
|
2014-01-14 21:32:24 -06:00
|
|
|
|
fn mut_split(self, pred: 'a |&T| -> bool) -> MutSplits<'a, T> {
|
|
|
|
|
MutSplits { v: self, pred: pred, finished: false }
|
2013-12-01 11:50:34 -06:00
|
|
|
|
}
|
|
|
|
|
|
2013-11-30 15:28:42 -06:00
|
|
|
|
#[inline]
|
2014-01-14 21:32:24 -06:00
|
|
|
|
fn mut_chunks(self, chunk_size: uint) -> MutChunks<'a, T> {
|
2013-11-30 15:28:42 -06:00
|
|
|
|
assert!(chunk_size > 0);
|
2014-01-14 21:32:24 -06:00
|
|
|
|
MutChunks { v: self, chunk_size: chunk_size }
|
2013-11-30 15:28:42 -06:00
|
|
|
|
}
|
|
|
|
|
|
2014-01-25 11:00:46 -06:00
|
|
|
|
fn mut_shift_ref(&mut self) -> Option<&'a mut T> {
|
|
|
|
|
if self.len() == 0 { return None; }
|
2013-11-16 16:29:19 -06:00
|
|
|
|
unsafe {
|
2014-02-14 17:42:01 -06:00
|
|
|
|
let s: &mut Slice<T> = transmute(self);
|
2014-01-25 11:00:46 -06:00
|
|
|
|
Some(cast::transmute_mut(&*raw::shift_ptr(s)))
|
2013-11-16 16:29:19 -06:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-25 14:33:31 -06:00
|
|
|
|
fn mut_pop_ref(&mut self) -> Option<&'a mut T> {
|
|
|
|
|
if self.len() == 0 { return None; }
|
2013-11-16 16:29:19 -06:00
|
|
|
|
unsafe {
|
2014-02-14 17:42:01 -06:00
|
|
|
|
let s: &mut Slice<T> = transmute(self);
|
2014-01-25 14:33:31 -06:00
|
|
|
|
Some(cast::transmute_mut(&*raw::pop_ptr(s)))
|
2013-11-16 16:29:19 -06:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-06-28 11:54:03 -05:00
|
|
|
|
fn swap(self, a: uint, b: uint) {
|
|
|
|
|
unsafe {
|
|
|
|
|
// Can't take two mutable loans from one vector, so instead just cast
|
|
|
|
|
// them to their raw pointers to do the swap
|
|
|
|
|
let pa: *mut T = &mut self[a];
|
|
|
|
|
let pb: *mut T = &mut self[b];
|
2014-02-14 17:42:01 -06:00
|
|
|
|
ptr::swap(pa, pb);
|
2013-06-28 11:54:03 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn reverse(self) {
|
|
|
|
|
let mut i: uint = 0;
|
|
|
|
|
let ln = self.len();
|
|
|
|
|
while i < ln / 2 {
|
|
|
|
|
self.swap(i, ln - i - 1);
|
|
|
|
|
i += 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-18 16:24:26 -06:00
|
|
|
|
#[inline]
|
2013-12-19 21:42:00 -06:00
|
|
|
|
fn sort_by(self, compare: |&T, &T| -> Ordering) {
|
|
|
|
|
merge_sort(self, compare)
|
2013-12-18 16:24:26 -06:00
|
|
|
|
}
|
|
|
|
|
|
2013-06-18 01:52:14 -05:00
|
|
|
|
#[inline]
|
|
|
|
|
fn move_from(self, mut src: ~[T], start: uint, end: uint) -> uint {
|
2013-08-03 11:45:23 -05:00
|
|
|
|
for (a, b) in self.mut_iter().zip(src.mut_slice(start, end).mut_iter()) {
|
2014-01-31 14:35:36 -06:00
|
|
|
|
mem::swap(a, b);
|
2013-06-18 01:52:14 -05:00
|
|
|
|
}
|
|
|
|
|
cmp::min(self.len(), end-start)
|
|
|
|
|
}
|
|
|
|
|
|
2013-06-18 16:45:18 -05:00
|
|
|
|
#[inline]
|
2014-01-21 08:34:42 -06:00
|
|
|
|
unsafe fn unsafe_mut_ref(self, index: uint) -> &'a mut T {
|
2014-02-14 17:42:01 -06:00
|
|
|
|
transmute((self.repr().data as *mut T).offset(index as int))
|
2013-04-18 17:53:29 -05:00
|
|
|
|
}
|
|
|
|
|
|
2013-12-15 06:35:12 -06:00
|
|
|
|
#[inline]
|
|
|
|
|
fn as_mut_ptr(self) -> *mut T {
|
|
|
|
|
self.repr().data as *mut T
|
|
|
|
|
}
|
|
|
|
|
|
2013-06-18 16:45:18 -05:00
|
|
|
|
#[inline]
|
2013-07-21 19:20:52 -05:00
|
|
|
|
unsafe fn unsafe_set(self, index: uint, val: T) {
|
2013-04-18 17:53:29 -05:00
|
|
|
|
*self.unsafe_mut_ref(index) = val;
|
2013-04-17 16:19:25 -05:00
|
|
|
|
}
|
2013-07-03 01:34:17 -05:00
|
|
|
|
|
2013-12-16 06:30:56 -06:00
|
|
|
|
#[inline]
|
|
|
|
|
unsafe fn init_elem(self, i: uint, val: T) {
|
2014-02-09 00:16:42 -06:00
|
|
|
|
mem::move_val_init(&mut (*self.as_mut_ptr().offset(i as int)), val);
|
2013-12-16 06:30:56 -06:00
|
|
|
|
}
|
|
|
|
|
|
2013-12-16 06:35:02 -06:00
|
|
|
|
#[inline]
|
|
|
|
|
unsafe fn copy_memory(self, src: &[T]) {
|
2013-12-17 09:13:20 -06:00
|
|
|
|
let len_src = src.len();
|
|
|
|
|
assert!(self.len() >= len_src);
|
|
|
|
|
ptr::copy_nonoverlapping_memory(self.as_mut_ptr(), src.as_ptr(), len_src)
|
2013-10-14 23:37:32 -05:00
|
|
|
|
}
|
2013-04-17 16:19:25 -05:00
|
|
|
|
}
|
|
|
|
|
|
2013-07-06 02:20:08 -05:00
|
|
|
|
/// Trait for &[T] where T is Cloneable
|
2013-06-18 01:52:14 -05:00
|
|
|
|
pub trait MutableCloneableVector<T> {
|
2013-12-23 05:57:16 -06:00
|
|
|
|
/// Copies as many elements from `src` as it can into `self` (the
|
|
|
|
|
/// shorter of `self.len()` and `src.len()`). Returns the number
|
|
|
|
|
/// of elements copied.
|
|
|
|
|
///
|
|
|
|
|
/// # Example
|
|
|
|
|
///
|
|
|
|
|
/// ```rust
|
|
|
|
|
/// use std::vec::MutableCloneableVector;
|
|
|
|
|
///
|
|
|
|
|
/// let mut dst = [0, 0, 0];
|
|
|
|
|
/// let src = [1, 2];
|
|
|
|
|
///
|
|
|
|
|
/// assert_eq!(dst.copy_from(src), 2);
|
|
|
|
|
/// assert_eq!(dst, [1, 2, 0]);
|
|
|
|
|
///
|
|
|
|
|
/// let src2 = [3, 4, 5, 6];
|
|
|
|
|
/// assert_eq!(dst.copy_from(src2), 3);
|
|
|
|
|
/// assert_eq!(dst, [3, 4, 5]);
|
|
|
|
|
/// ```
|
2013-06-18 01:52:14 -05:00
|
|
|
|
fn copy_from(self, &[T]) -> uint;
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-10 01:16:18 -06:00
|
|
|
|
impl<'a, T:Clone> MutableCloneableVector<T> for &'a mut [T] {
|
2013-06-18 01:52:14 -05:00
|
|
|
|
#[inline]
|
|
|
|
|
fn copy_from(self, src: &[T]) -> uint {
|
2013-08-03 11:45:23 -05:00
|
|
|
|
for (a, b) in self.mut_iter().zip(src.iter()) {
|
2013-11-08 22:10:09 -06:00
|
|
|
|
a.clone_from(b);
|
2013-06-18 01:52:14 -05:00
|
|
|
|
}
|
|
|
|
|
cmp::min(self.len(), src.len())
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-19 06:03:11 -06:00
|
|
|
|
/// Methods for mutable vectors with orderable elements, such as
|
|
|
|
|
/// in-place sorting.
|
2013-12-19 21:42:00 -06:00
|
|
|
|
pub trait MutableTotalOrdVector<T> {
|
2013-12-19 06:03:11 -06:00
|
|
|
|
/// Sort the vector, in place.
|
|
|
|
|
///
|
2013-12-23 05:57:16 -06:00
|
|
|
|
/// This is equivalent to `self.sort_by(|a, b| a.cmp(b))`.
|
2013-12-19 06:03:11 -06:00
|
|
|
|
///
|
|
|
|
|
/// # Example
|
|
|
|
|
///
|
|
|
|
|
/// ```rust
|
|
|
|
|
/// let mut v = [-5, 4, 1, -3, 2];
|
|
|
|
|
///
|
|
|
|
|
/// v.sort();
|
|
|
|
|
/// assert_eq!(v, [-5, -3, 1, 2, 4]);
|
|
|
|
|
/// ```
|
|
|
|
|
fn sort(self);
|
|
|
|
|
}
|
2013-12-19 21:42:00 -06:00
|
|
|
|
impl<'a, T: TotalOrd> MutableTotalOrdVector<T> for &'a mut [T] {
|
2013-12-19 06:03:11 -06:00
|
|
|
|
#[inline]
|
|
|
|
|
fn sort(self) {
|
2013-12-19 21:42:00 -06:00
|
|
|
|
self.sort_by(|a,b| a.cmp(b))
|
2013-12-19 06:03:11 -06:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-10-11 17:37:37 -05:00
|
|
|
|
/**
|
|
|
|
|
* Constructs a vector from an unsafe pointer to a buffer
|
|
|
|
|
*
|
|
|
|
|
* # Arguments
|
|
|
|
|
*
|
|
|
|
|
* * ptr - An unsafe pointer to a buffer of `T`
|
|
|
|
|
* * elts - The number of elements in the buffer
|
|
|
|
|
*/
|
|
|
|
|
// Wrapper for fn in raw: needs to be called by net_tcp::on_tcp_read_cb
|
|
|
|
|
pub unsafe fn from_buf<T>(ptr: *T, elts: uint) -> ~[T] {
|
|
|
|
|
raw::from_buf_raw(ptr, elts)
|
|
|
|
|
}
|
|
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
|
/// Unsafe operations
|
2012-12-14 17:47:11 -06:00
|
|
|
|
pub mod raw {
|
2014-02-14 17:42:01 -06:00
|
|
|
|
use cast::transmute;
|
2012-12-23 16:41:37 -06:00
|
|
|
|
use ptr;
|
2014-02-10 15:50:42 -06:00
|
|
|
|
use ptr::RawPtr;
|
2014-01-06 18:48:51 -06:00
|
|
|
|
use vec::{with_capacity, MutableVector, OwnedVector};
|
2014-02-16 02:04:33 -06:00
|
|
|
|
use raw::Slice;
|
2012-04-25 19:18:06 -05:00
|
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
|
/**
|
|
|
|
|
* Form a slice from a pointer and length (as a number of units,
|
|
|
|
|
* not bytes).
|
|
|
|
|
*/
|
2013-06-18 16:45:18 -05:00
|
|
|
|
#[inline]
|
2013-11-18 23:15:42 -06:00
|
|
|
|
pub unsafe fn buf_as_slice<T,U>(p: *T, len: uint, f: |v: &[T]| -> U)
|
|
|
|
|
-> U {
|
2014-02-14 17:42:01 -06:00
|
|
|
|
f(transmute(Slice {
|
2013-10-14 23:37:32 -05:00
|
|
|
|
data: p,
|
|
|
|
|
len: len
|
|
|
|
|
}))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Form a slice from a pointer and length (as a number of units,
|
|
|
|
|
* not bytes).
|
|
|
|
|
*/
|
|
|
|
|
#[inline]
|
2013-11-18 23:15:42 -06:00
|
|
|
|
pub unsafe fn mut_buf_as_slice<T,
|
|
|
|
|
U>(
|
|
|
|
|
p: *mut T,
|
|
|
|
|
len: uint,
|
|
|
|
|
f: |v: &mut [T]| -> U)
|
|
|
|
|
-> U {
|
2014-02-14 17:42:01 -06:00
|
|
|
|
f(transmute(Slice {
|
2013-10-14 23:37:32 -05:00
|
|
|
|
data: p as *T,
|
|
|
|
|
len: len
|
|
|
|
|
}))
|
|
|
|
|
}
|
|
|
|
|
|
2012-10-11 17:37:37 -05:00
|
|
|
|
/**
|
|
|
|
|
* Constructs a vector from an unsafe pointer to a buffer
|
|
|
|
|
*
|
|
|
|
|
* # Arguments
|
|
|
|
|
*
|
|
|
|
|
* * ptr - An unsafe pointer to a buffer of `T`
|
|
|
|
|
* * elts - The number of elements in the buffer
|
|
|
|
|
*/
|
|
|
|
|
// Was in raw, but needs to be called by net_tcp::on_tcp_read_cb
|
2013-06-18 16:45:18 -05:00
|
|
|
|
#[inline]
|
2012-10-11 17:37:37 -05:00
|
|
|
|
pub unsafe fn from_buf_raw<T>(ptr: *T, elts: uint) -> ~[T] {
|
|
|
|
|
let mut dst = with_capacity(elts);
|
2013-12-15 06:05:30 -06:00
|
|
|
|
dst.set_len(elts);
|
2013-12-17 09:13:20 -06:00
|
|
|
|
ptr::copy_memory(dst.as_mut_ptr(), ptr, elts);
|
2012-12-12 17:38:50 -06:00
|
|
|
|
dst
|
2012-10-11 17:37:37 -05:00
|
|
|
|
}
|
|
|
|
|
|
2013-11-16 16:29:19 -06:00
|
|
|
|
/**
|
|
|
|
|
* Returns a pointer to first element in slice and adjusts
|
|
|
|
|
* slice so it no longer contains that element. Fails if
|
|
|
|
|
* slice is empty. O(1).
|
|
|
|
|
*/
|
|
|
|
|
pub unsafe fn shift_ptr<T>(slice: &mut Slice<T>) -> *T {
|
|
|
|
|
if slice.len == 0 { fail!("shift on empty slice"); }
|
|
|
|
|
let head: *T = slice.data;
|
2014-02-10 15:50:42 -06:00
|
|
|
|
slice.data = slice.data.offset(1);
|
2013-11-16 16:29:19 -06:00
|
|
|
|
slice.len -= 1;
|
|
|
|
|
head
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Returns a pointer to last element in slice and adjusts
|
|
|
|
|
* slice so it no longer contains that element. Fails if
|
|
|
|
|
* slice is empty. O(1).
|
|
|
|
|
*/
|
|
|
|
|
pub unsafe fn pop_ptr<T>(slice: &mut Slice<T>) -> *T {
|
|
|
|
|
if slice.len == 0 { fail!("pop on empty slice"); }
|
2014-02-10 15:50:42 -06:00
|
|
|
|
let tail: *T = slice.data.offset((slice.len - 1) as int);
|
2013-11-16 16:29:19 -06:00
|
|
|
|
slice.len -= 1;
|
|
|
|
|
tail
|
|
|
|
|
}
|
2011-12-13 18:25:51 -06:00
|
|
|
|
}
|
|
|
|
|
|
2013-12-15 05:35:08 -06:00
|
|
|
|
/// Operations on `[u8]`.
|
2012-10-01 17:45:34 -05:00
|
|
|
|
pub mod bytes {
|
2013-12-17 09:13:20 -06:00
|
|
|
|
use container::Container;
|
2014-01-06 18:48:51 -06:00
|
|
|
|
use vec::{MutableVector, OwnedVector, ImmutableVector};
|
2013-06-18 01:20:53 -05:00
|
|
|
|
use ptr;
|
2014-01-06 18:48:51 -06:00
|
|
|
|
use ptr::RawPtr;
|
2013-06-18 01:20:53 -05:00
|
|
|
|
|
2013-12-15 05:35:08 -06:00
|
|
|
|
/// A trait for operations on mutable `[u8]`s.
|
2013-06-18 01:20:53 -05:00
|
|
|
|
pub trait MutableByteVector {
|
|
|
|
|
/// Sets all bytes of the receiver to the given value.
|
2013-08-09 03:25:24 -05:00
|
|
|
|
fn set_memory(self, value: u8);
|
2013-06-18 01:20:53 -05:00
|
|
|
|
}
|
|
|
|
|
|
2013-12-10 01:16:18 -06:00
|
|
|
|
impl<'a> MutableByteVector for &'a mut [u8] {
|
2013-06-18 01:20:53 -05:00
|
|
|
|
#[inline]
|
|
|
|
|
fn set_memory(self, value: u8) {
|
2013-12-17 09:13:20 -06:00
|
|
|
|
unsafe { ptr::set_memory(self.as_mut_ptr(), value, self.len()) };
|
2013-06-18 01:20:53 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
2012-01-06 09:36:56 -06:00
|
|
|
|
|
2013-12-16 07:31:59 -06:00
|
|
|
|
/// Copies data from `src` to `dst`
|
2013-12-16 07:06:13 -06:00
|
|
|
|
///
|
2013-12-16 07:31:59 -06:00
|
|
|
|
/// `src` and `dst` must not overlap. Fails if the length of `dst`
|
|
|
|
|
/// is less than the length of `src`.
|
2013-06-18 16:45:18 -05:00
|
|
|
|
#[inline]
|
2013-12-15 05:23:11 -06:00
|
|
|
|
pub fn copy_memory(dst: &mut [u8], src: &[u8]) {
|
2013-12-16 06:35:02 -06:00
|
|
|
|
// Bound checks are done at .copy_memory.
|
|
|
|
|
unsafe { dst.copy_memory(src) }
|
2012-07-20 21:20:13 -05:00
|
|
|
|
}
|
2013-09-10 17:52:46 -05:00
|
|
|
|
|
|
|
|
|
/**
|
2013-12-15 05:35:08 -06:00
|
|
|
|
* Allocate space in `dst` and append the data to `src`.
|
2013-09-10 17:52:46 -05:00
|
|
|
|
*/
|
|
|
|
|
#[inline]
|
|
|
|
|
pub fn push_bytes(dst: &mut ~[u8], src: &[u8]) {
|
|
|
|
|
let old_len = dst.len();
|
|
|
|
|
dst.reserve_additional(src.len());
|
|
|
|
|
unsafe {
|
2013-12-17 09:13:20 -06:00
|
|
|
|
ptr::copy_memory(dst.as_mut_ptr().offset(old_len as int), src.as_ptr(), src.len());
|
2013-12-15 06:05:30 -06:00
|
|
|
|
dst.set_len(old_len + src.len());
|
2013-09-10 17:52:46 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
2012-01-06 09:36:56 -06:00
|
|
|
|
}
|
|
|
|
|
|
2013-08-25 22:34:43 -05:00
|
|
|
|
impl<A: Clone> Clone for ~[A] {
|
2013-03-15 17:26:59 -05:00
|
|
|
|
#[inline]
|
|
|
|
|
fn clone(&self) -> ~[A] {
|
2013-08-09 22:09:47 -05:00
|
|
|
|
self.iter().map(|item| item.clone()).collect()
|
2013-03-15 17:26:59 -05:00
|
|
|
|
}
|
2013-11-08 22:10:09 -06:00
|
|
|
|
|
|
|
|
|
fn clone_from(&mut self, source: &~[A]) {
|
|
|
|
|
if self.len() < source.len() {
|
|
|
|
|
*self = source.clone()
|
|
|
|
|
} else {
|
|
|
|
|
self.truncate(source.len());
|
|
|
|
|
for (x, y) in self.mut_iter().zip(source.iter()) {
|
|
|
|
|
x.clone_from(y);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-03-15 17:26:59 -05:00
|
|
|
|
}
|
|
|
|
|
|
2013-08-25 22:34:43 -05:00
|
|
|
|
impl<A: DeepClone> DeepClone for ~[A] {
|
|
|
|
|
#[inline]
|
|
|
|
|
fn deep_clone(&self) -> ~[A] {
|
|
|
|
|
self.iter().map(|item| item.deep_clone()).collect()
|
|
|
|
|
}
|
2013-11-08 22:10:09 -06:00
|
|
|
|
|
|
|
|
|
fn deep_clone_from(&mut self, source: &~[A]) {
|
|
|
|
|
if self.len() < source.len() {
|
|
|
|
|
*self = source.deep_clone()
|
|
|
|
|
} else {
|
|
|
|
|
self.truncate(source.len());
|
|
|
|
|
for (x, y) in self.mut_iter().zip(source.iter()) {
|
|
|
|
|
x.deep_clone_from(y);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-08-25 22:34:43 -05:00
|
|
|
|
}
|
|
|
|
|
|
2014-02-12 13:41:34 -06:00
|
|
|
|
impl<'a, T: fmt::Show> fmt::Show for &'a [T] {
|
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
2014-02-19 12:07:49 -06:00
|
|
|
|
try!(write!(f.buf, "["));
|
2014-02-12 13:41:34 -06:00
|
|
|
|
let mut is_first = true;
|
|
|
|
|
for x in self.iter() {
|
|
|
|
|
if is_first {
|
|
|
|
|
is_first = false;
|
|
|
|
|
} else {
|
2014-02-19 12:07:49 -06:00
|
|
|
|
try!(write!(f.buf, ", "));
|
2014-02-12 13:41:34 -06:00
|
|
|
|
}
|
2014-02-19 12:07:49 -06:00
|
|
|
|
try!(write!(f.buf, "{}", *x))
|
2014-02-12 13:41:34 -06:00
|
|
|
|
}
|
|
|
|
|
write!(f.buf, "]")
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl<T: fmt::Show> fmt::Show for ~[T] {
|
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
|
self.as_slice().fmt(f)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-09 21:32:56 -05:00
|
|
|
|
// This works because every lifetime is a sub-lifetime of 'static
|
2013-12-10 01:16:18 -06:00
|
|
|
|
impl<'a, A> Default for &'a [A] {
|
|
|
|
|
fn default() -> &'a [A] { &'a [] }
|
2013-09-09 21:32:56 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl<A> Default for ~[A] {
|
|
|
|
|
fn default() -> ~[A] { ~[] }
|
|
|
|
|
}
|
|
|
|
|
|
2013-06-07 21:39:52 -05:00
|
|
|
|
macro_rules! iterator {
|
|
|
|
|
(struct $name:ident -> $ptr:ty, $elem:ty) => {
|
2013-11-29 08:52:38 -06:00
|
|
|
|
/// An iterator for iterating over a vector.
|
2013-12-10 01:16:18 -06:00
|
|
|
|
pub struct $name<'a, T> {
|
2013-06-07 21:39:52 -05:00
|
|
|
|
priv ptr: $ptr,
|
|
|
|
|
priv end: $ptr,
|
2014-01-22 13:03:02 -06:00
|
|
|
|
priv marker: marker::ContravariantLifetime<'a>,
|
2013-06-07 21:39:52 -05:00
|
|
|
|
}
|
2013-11-29 08:52:38 -06:00
|
|
|
|
|
2013-12-10 01:16:18 -06:00
|
|
|
|
impl<'a, T> Iterator<$elem> for $name<'a, T> {
|
2013-06-07 21:39:52 -05:00
|
|
|
|
#[inline]
|
|
|
|
|
fn next(&mut self) -> Option<$elem> {
|
2013-07-10 23:23:59 -05:00
|
|
|
|
// could be implemented with slices, but this avoids bounds checks
|
2013-06-07 21:39:52 -05:00
|
|
|
|
unsafe {
|
|
|
|
|
if self.ptr == self.end {
|
|
|
|
|
None
|
|
|
|
|
} else {
|
|
|
|
|
let old = self.ptr;
|
2013-10-16 20:34:01 -05:00
|
|
|
|
self.ptr = if mem::size_of::<T>() == 0 {
|
2013-08-02 08:34:11 -05:00
|
|
|
|
// purposefully don't use 'ptr.offset' because for
|
|
|
|
|
// vectors with 0-size elements this would return the
|
|
|
|
|
// same pointer.
|
2014-02-14 17:42:01 -06:00
|
|
|
|
transmute(self.ptr as uint + 1)
|
2013-08-02 08:34:11 -05:00
|
|
|
|
} else {
|
2013-08-09 00:22:52 -05:00
|
|
|
|
self.ptr.offset(1)
|
2013-08-02 08:34:11 -05:00
|
|
|
|
};
|
|
|
|
|
|
2014-02-14 17:42:01 -06:00
|
|
|
|
Some(transmute(old))
|
2013-06-07 21:39:52 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-06-21 05:12:01 -05:00
|
|
|
|
|
|
|
|
|
#[inline]
|
2013-07-02 20:40:46 -05:00
|
|
|
|
fn size_hint(&self) -> (uint, Option<uint>) {
|
2013-07-29 17:31:44 -05:00
|
|
|
|
let diff = (self.end as uint) - (self.ptr as uint);
|
2013-10-16 20:34:01 -05:00
|
|
|
|
let exact = diff / mem::nonzero_size_of::<T>();
|
2013-07-02 20:40:46 -05:00
|
|
|
|
(exact, Some(exact))
|
2013-06-21 05:12:01 -05:00
|
|
|
|
}
|
2013-06-07 21:39:52 -05:00
|
|
|
|
}
|
|
|
|
|
|
2013-12-10 01:16:18 -06:00
|
|
|
|
impl<'a, T> DoubleEndedIterator<$elem> for $name<'a, T> {
|
2013-07-10 23:23:59 -05:00
|
|
|
|
#[inline]
|
|
|
|
|
fn next_back(&mut self) -> Option<$elem> {
|
|
|
|
|
// could be implemented with slices, but this avoids bounds checks
|
|
|
|
|
unsafe {
|
|
|
|
|
if self.end == self.ptr {
|
|
|
|
|
None
|
|
|
|
|
} else {
|
2013-10-16 20:34:01 -05:00
|
|
|
|
self.end = if mem::size_of::<T>() == 0 {
|
2013-08-02 08:34:11 -05:00
|
|
|
|
// See above for why 'ptr.offset' isn't used
|
2014-02-14 17:42:01 -06:00
|
|
|
|
transmute(self.end as uint - 1)
|
2013-08-02 08:34:11 -05:00
|
|
|
|
} else {
|
2013-08-09 00:22:52 -05:00
|
|
|
|
self.end.offset(-1)
|
2013-08-02 08:34:11 -05:00
|
|
|
|
};
|
2014-02-14 17:42:01 -06:00
|
|
|
|
Some(transmute(self.end))
|
2013-07-10 23:23:59 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-14 21:32:24 -06:00
|
|
|
|
impl<'a, T> RandomAccessIterator<&'a T> for Items<'a, T> {
|
2013-07-29 19:52:01 -05:00
|
|
|
|
#[inline]
|
|
|
|
|
fn indexable(&self) -> uint {
|
|
|
|
|
let (exact, _) = self.size_hint();
|
|
|
|
|
exact
|
|
|
|
|
}
|
2013-07-22 19:11:24 -05:00
|
|
|
|
|
2013-08-05 21:20:37 -05:00
|
|
|
|
#[inline]
|
2013-12-10 01:16:18 -06:00
|
|
|
|
fn idx(&self, index: uint) -> Option<&'a T> {
|
2013-07-29 19:52:01 -05:00
|
|
|
|
unsafe {
|
|
|
|
|
if index < self.indexable() {
|
2014-02-14 17:42:01 -06:00
|
|
|
|
transmute(self.ptr.offset(index as int))
|
2013-07-29 19:52:01 -05:00
|
|
|
|
} else {
|
|
|
|
|
None
|
2013-07-22 19:11:24 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-14 21:32:24 -06:00
|
|
|
|
iterator!{struct Items -> *T, &'a T}
|
2014-01-23 13:41:57 -06:00
|
|
|
|
pub type RevItems<'a, T> = Rev<Items<'a, T>>;
|
2012-06-02 21:03:28 -05:00
|
|
|
|
|
2014-01-14 21:32:24 -06:00
|
|
|
|
impl<'a, T> ExactSize<&'a T> for Items<'a, T> {}
|
|
|
|
|
impl<'a, T> ExactSize<&'a mut T> for MutItems<'a, T> {}
|
2013-08-30 12:59:49 -05:00
|
|
|
|
|
2014-01-14 21:32:24 -06:00
|
|
|
|
impl<'a, T> Clone for Items<'a, T> {
|
|
|
|
|
fn clone(&self) -> Items<'a, T> { *self }
|
2013-07-18 10:38:17 -05:00
|
|
|
|
}
|
|
|
|
|
|
2014-01-14 21:32:24 -06:00
|
|
|
|
iterator!{struct MutItems -> *mut T, &'a mut T}
|
2014-01-23 13:41:57 -06:00
|
|
|
|
pub type RevMutItems<'a, T> = Rev<MutItems<'a, T>>;
|
2013-06-06 00:12:39 -05:00
|
|
|
|
|
2013-12-01 11:50:34 -06:00
|
|
|
|
/// An iterator over the subslices of the vector which are separated
|
|
|
|
|
/// by elements that match `pred`.
|
2014-01-14 21:32:24 -06:00
|
|
|
|
pub struct MutSplits<'a, T> {
|
2013-12-10 01:16:18 -06:00
|
|
|
|
priv v: &'a mut [T],
|
|
|
|
|
priv pred: 'a |t: &T| -> bool,
|
2013-12-01 11:50:34 -06:00
|
|
|
|
priv finished: bool
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-14 21:32:24 -06:00
|
|
|
|
impl<'a, T> Iterator<&'a mut [T]> for MutSplits<'a, T> {
|
2013-12-01 11:50:34 -06:00
|
|
|
|
#[inline]
|
2013-12-10 01:16:18 -06:00
|
|
|
|
fn next(&mut self) -> Option<&'a mut [T]> {
|
2013-12-01 11:50:34 -06:00
|
|
|
|
if self.finished { return None; }
|
|
|
|
|
|
|
|
|
|
match self.v.iter().position(|x| (self.pred)(x)) {
|
|
|
|
|
None => {
|
|
|
|
|
self.finished = true;
|
2014-01-31 14:35:36 -06:00
|
|
|
|
let tmp = mem::replace(&mut self.v, &mut []);
|
2013-12-01 11:50:34 -06:00
|
|
|
|
let len = tmp.len();
|
|
|
|
|
let (head, tail) = tmp.mut_split_at(len);
|
|
|
|
|
self.v = tail;
|
|
|
|
|
Some(head)
|
|
|
|
|
}
|
|
|
|
|
Some(idx) => {
|
2014-01-31 14:35:36 -06:00
|
|
|
|
let tmp = mem::replace(&mut self.v, &mut []);
|
2013-12-01 11:50:34 -06:00
|
|
|
|
let (head, tail) = tmp.mut_split_at(idx);
|
|
|
|
|
self.v = tail.mut_slice_from(1);
|
|
|
|
|
Some(head)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
|
fn size_hint(&self) -> (uint, Option<uint>) {
|
2013-12-11 19:51:22 -06:00
|
|
|
|
if self.finished {
|
|
|
|
|
(0, Some(0))
|
|
|
|
|
} else {
|
|
|
|
|
// if the predicate doesn't match anything, we yield one slice
|
|
|
|
|
// if it matches every element, we yield len+1 empty slices.
|
|
|
|
|
(1, Some(self.v.len() + 1))
|
|
|
|
|
}
|
2013-12-01 11:50:34 -06:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-14 21:32:24 -06:00
|
|
|
|
impl<'a, T> DoubleEndedIterator<&'a mut [T]> for MutSplits<'a, T> {
|
2013-12-01 11:50:34 -06:00
|
|
|
|
#[inline]
|
2013-12-10 01:16:18 -06:00
|
|
|
|
fn next_back(&mut self) -> Option<&'a mut [T]> {
|
2013-12-01 11:50:34 -06:00
|
|
|
|
if self.finished { return None; }
|
|
|
|
|
|
|
|
|
|
match self.v.iter().rposition(|x| (self.pred)(x)) {
|
|
|
|
|
None => {
|
|
|
|
|
self.finished = true;
|
2014-01-31 14:35:36 -06:00
|
|
|
|
let tmp = mem::replace(&mut self.v, &mut []);
|
2013-12-11 19:51:22 -06:00
|
|
|
|
Some(tmp)
|
2013-12-01 11:50:34 -06:00
|
|
|
|
}
|
|
|
|
|
Some(idx) => {
|
2014-01-31 14:35:36 -06:00
|
|
|
|
let tmp = mem::replace(&mut self.v, &mut []);
|
2013-12-01 11:50:34 -06:00
|
|
|
|
let (head, tail) = tmp.mut_split_at(idx);
|
|
|
|
|
self.v = head;
|
|
|
|
|
Some(tail.mut_slice_from(1))
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-11-30 15:28:42 -06:00
|
|
|
|
/// An iterator over a vector in (non-overlapping) mutable chunks (`size` elements at a time). When
|
|
|
|
|
/// the vector len is not evenly divided by the chunk size, the last slice of the iteration will be
|
|
|
|
|
/// the remainder.
|
2014-01-14 21:32:24 -06:00
|
|
|
|
pub struct MutChunks<'a, T> {
|
2013-12-10 01:16:18 -06:00
|
|
|
|
priv v: &'a mut [T],
|
2013-12-11 19:40:27 -06:00
|
|
|
|
priv chunk_size: uint
|
2013-11-30 15:28:42 -06:00
|
|
|
|
}
|
|
|
|
|
|
2014-01-14 21:32:24 -06:00
|
|
|
|
impl<'a, T> Iterator<&'a mut [T]> for MutChunks<'a, T> {
|
2013-11-30 15:28:42 -06:00
|
|
|
|
#[inline]
|
2013-12-10 01:16:18 -06:00
|
|
|
|
fn next(&mut self) -> Option<&'a mut [T]> {
|
2013-12-11 19:40:27 -06:00
|
|
|
|
if self.v.len() == 0 {
|
2013-11-30 15:28:42 -06:00
|
|
|
|
None
|
|
|
|
|
} else {
|
2013-12-11 19:40:27 -06:00
|
|
|
|
let sz = cmp::min(self.v.len(), self.chunk_size);
|
2014-01-31 14:35:36 -06:00
|
|
|
|
let tmp = mem::replace(&mut self.v, &mut []);
|
2013-12-01 11:19:39 -06:00
|
|
|
|
let (head, tail) = tmp.mut_split_at(sz);
|
2013-11-30 15:28:42 -06:00
|
|
|
|
self.v = tail;
|
|
|
|
|
Some(head)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
|
fn size_hint(&self) -> (uint, Option<uint>) {
|
2013-12-11 19:40:27 -06:00
|
|
|
|
if self.v.len() == 0 {
|
2013-11-30 15:28:42 -06:00
|
|
|
|
(0, Some(0))
|
|
|
|
|
} else {
|
2014-02-16 14:20:01 -06:00
|
|
|
|
let (n, rem) = div_rem(self.v.len(), self.chunk_size);
|
2013-11-30 15:28:42 -06:00
|
|
|
|
let n = if rem > 0 { n + 1 } else { n };
|
|
|
|
|
(n, Some(n))
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-14 21:32:24 -06:00
|
|
|
|
impl<'a, T> DoubleEndedIterator<&'a mut [T]> for MutChunks<'a, T> {
|
2013-11-30 18:54:28 -06:00
|
|
|
|
#[inline]
|
2013-12-10 01:16:18 -06:00
|
|
|
|
fn next_back(&mut self) -> Option<&'a mut [T]> {
|
2013-12-11 19:40:27 -06:00
|
|
|
|
if self.v.len() == 0 {
|
2013-11-30 18:54:28 -06:00
|
|
|
|
None
|
|
|
|
|
} else {
|
2013-12-11 19:40:27 -06:00
|
|
|
|
let remainder = self.v.len() % self.chunk_size;
|
2013-11-30 18:54:28 -06:00
|
|
|
|
let sz = if remainder != 0 { remainder } else { self.chunk_size };
|
2014-01-31 14:35:36 -06:00
|
|
|
|
let tmp = mem::replace(&mut self.v, &mut []);
|
2013-12-11 19:40:27 -06:00
|
|
|
|
let tmp_len = tmp.len();
|
|
|
|
|
let (head, tail) = tmp.mut_split_at(tmp_len - sz);
|
2013-11-30 18:54:28 -06:00
|
|
|
|
self.v = head;
|
|
|
|
|
Some(tail)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-07-01 10:26:44 -05:00
|
|
|
|
/// An iterator that moves out of a vector.
|
2014-01-14 21:32:24 -06:00
|
|
|
|
pub struct MoveItems<T> {
|
2013-12-16 04:26:25 -06:00
|
|
|
|
priv allocation: *mut u8, // the block of memory allocated for the vector
|
2014-01-14 21:32:24 -06:00
|
|
|
|
priv iter: Items<'static, T>
|
2013-07-01 10:26:44 -05:00
|
|
|
|
}
|
|
|
|
|
|
2014-01-14 21:32:24 -06:00
|
|
|
|
impl<T> Iterator<T> for MoveItems<T> {
|
2013-08-05 21:20:37 -05:00
|
|
|
|
#[inline]
|
2013-07-01 10:26:44 -05:00
|
|
|
|
fn next(&mut self) -> Option<T> {
|
2013-12-16 04:26:25 -06:00
|
|
|
|
unsafe {
|
2014-02-14 17:42:01 -06:00
|
|
|
|
self.iter.next().map(|x| ptr::read(x))
|
2013-07-01 10:26:44 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
2013-08-05 21:20:37 -05:00
|
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
|
fn size_hint(&self) -> (uint, Option<uint>) {
|
2013-12-16 04:26:25 -06:00
|
|
|
|
self.iter.size_hint()
|
2013-08-05 21:20:37 -05:00
|
|
|
|
}
|
2013-07-01 10:26:44 -05:00
|
|
|
|
}
|
|
|
|
|
|
2014-01-14 21:32:24 -06:00
|
|
|
|
impl<T> DoubleEndedIterator<T> for MoveItems<T> {
|
2013-08-05 21:20:37 -05:00
|
|
|
|
#[inline]
|
2013-12-16 04:26:25 -06:00
|
|
|
|
fn next_back(&mut self) -> Option<T> {
|
|
|
|
|
unsafe {
|
2014-02-14 17:42:01 -06:00
|
|
|
|
self.iter.next_back().map(|x| ptr::read(x))
|
2013-12-16 04:26:25 -06:00
|
|
|
|
}
|
2013-07-01 10:26:44 -05:00
|
|
|
|
}
|
2013-12-16 04:26:25 -06:00
|
|
|
|
}
|
2013-08-05 21:20:37 -05:00
|
|
|
|
|
2013-12-16 04:26:25 -06:00
|
|
|
|
#[unsafe_destructor]
|
2014-01-14 21:32:24 -06:00
|
|
|
|
impl<T> Drop for MoveItems<T> {
|
2014-01-14 01:46:58 -06:00
|
|
|
|
fn drop(&mut self) {
|
|
|
|
|
// destroy the remaining elements
|
|
|
|
|
for _x in *self {}
|
|
|
|
|
unsafe {
|
2013-12-12 15:27:26 -06:00
|
|
|
|
exchange_free(self.allocation as *u8)
|
2014-01-14 01:46:58 -06:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-16 04:26:25 -06:00
|
|
|
|
/// An iterator that moves out of a vector in reverse order.
|
2014-01-23 13:41:57 -06:00
|
|
|
|
pub type RevMoveItems<T> = Rev<MoveItems<T>>;
|
2013-12-16 04:26:25 -06:00
|
|
|
|
|
std: Move the iterator param on FromIterator and Extendable to the method.
If they are on the trait then it is extremely annoying to use them as
generic parameters to a function, e.g. with the iterator param on the trait
itself, if one was to pass an Extendable<int> to a function that filled it
either from a Range or a Map<VecIterator>, one needs to write something
like:
fn foo<E: Extendable<int, Range<int>> +
Extendable<int, Map<&'self int, int, VecIterator<int>>>
(e: &mut E, ...) { ... }
since using a generic, i.e. `foo<E: Extendable<int, I>, I: Iterator<int>>`
means that `foo` takes 2 type parameters, and the caller has to specify them
(which doesn't work anyway, as they'll mismatch with the iterators used in
`foo` itself).
This patch changes it to:
fn foo<E: Extendable<int>>(e: &mut E, ...) { ... }
2013-08-13 08:08:14 -05:00
|
|
|
|
impl<A> FromIterator<A> for ~[A] {
|
|
|
|
|
fn from_iterator<T: Iterator<A>>(iterator: &mut T) -> ~[A] {
|
2013-06-21 06:57:22 -05:00
|
|
|
|
let (lower, _) = iterator.size_hint();
|
2013-07-02 20:40:46 -05:00
|
|
|
|
let mut xs = with_capacity(lower);
|
2013-08-03 11:45:23 -05:00
|
|
|
|
for x in *iterator {
|
2013-06-21 06:57:22 -05:00
|
|
|
|
xs.push(x);
|
|
|
|
|
}
|
|
|
|
|
xs
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-06-25 16:07:44 -05:00
|
|
|
|
|
std: Move the iterator param on FromIterator and Extendable to the method.
If they are on the trait then it is extremely annoying to use them as
generic parameters to a function, e.g. with the iterator param on the trait
itself, if one was to pass an Extendable<int> to a function that filled it
either from a Range or a Map<VecIterator>, one needs to write something
like:
fn foo<E: Extendable<int, Range<int>> +
Extendable<int, Map<&'self int, int, VecIterator<int>>>
(e: &mut E, ...) { ... }
since using a generic, i.e. `foo<E: Extendable<int, I>, I: Iterator<int>>`
means that `foo` takes 2 type parameters, and the caller has to specify them
(which doesn't work anyway, as they'll mismatch with the iterators used in
`foo` itself).
This patch changes it to:
fn foo<E: Extendable<int>>(e: &mut E, ...) { ... }
2013-08-13 08:08:14 -05:00
|
|
|
|
impl<A> Extendable<A> for ~[A] {
|
|
|
|
|
fn extend<T: Iterator<A>>(&mut self, iterator: &mut T) {
|
2013-07-27 16:41:30 -05:00
|
|
|
|
let (lower, _) = iterator.size_hint();
|
|
|
|
|
let len = self.len();
|
2014-01-31 07:03:20 -06:00
|
|
|
|
self.reserve_exact(len + lower);
|
2013-08-03 11:45:23 -05:00
|
|
|
|
for x in *iterator {
|
2013-07-27 16:41:30 -05:00
|
|
|
|
self.push(x);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-17 19:28:21 -06:00
|
|
|
|
#[cfg(test)]
|
|
|
|
|
mod tests {
|
2014-01-07 00:33:37 -06:00
|
|
|
|
use prelude::*;
|
2013-10-16 20:34:01 -05:00
|
|
|
|
use mem;
|
2013-01-08 21:37:25 -06:00
|
|
|
|
use vec::*;
|
2013-03-01 21:07:12 -06:00
|
|
|
|
use cmp::*;
|
2013-12-18 16:24:26 -06:00
|
|
|
|
use rand::{Rng, task_rng};
|
2012-01-17 19:28:21 -06:00
|
|
|
|
|
2013-03-09 15:41:43 -06:00
|
|
|
|
fn square(n: uint) -> uint { n * n }
|
2012-01-17 19:28:21 -06:00
|
|
|
|
|
2013-03-09 15:41:43 -06:00
|
|
|
|
fn square_ref(n: &uint) -> uint { square(*n) }
|
2012-01-17 19:28:21 -06:00
|
|
|
|
|
2013-03-21 23:20:48 -05:00
|
|
|
|
fn is_odd(n: &uint) -> bool { *n % 2u == 1u }
|
2012-01-17 19:28:21 -06:00
|
|
|
|
|
|
|
|
|
#[test]
|
2012-06-24 22:18:18 -05:00
|
|
|
|
fn test_unsafe_ptrs() {
|
|
|
|
|
unsafe {
|
|
|
|
|
// Test on-stack copy-from-buf.
|
2012-06-29 18:26:56 -05:00
|
|
|
|
let a = ~[1, 2, 3];
|
2013-12-15 06:35:12 -06:00
|
|
|
|
let mut ptr = a.as_ptr();
|
2012-10-11 18:18:36 -05:00
|
|
|
|
let b = from_buf(ptr, 3u);
|
2013-05-18 21:02:45 -05:00
|
|
|
|
assert_eq!(b.len(), 3u);
|
|
|
|
|
assert_eq!(b[0], 1);
|
|
|
|
|
assert_eq!(b[1], 2);
|
|
|
|
|
assert_eq!(b[2], 3);
|
2012-06-24 22:18:18 -05:00
|
|
|
|
|
|
|
|
|
// Test on-heap copy-from-buf.
|
2012-06-29 18:26:56 -05:00
|
|
|
|
let c = ~[1, 2, 3, 4, 5];
|
2013-12-15 06:35:12 -06:00
|
|
|
|
ptr = c.as_ptr();
|
2012-10-11 18:18:36 -05:00
|
|
|
|
let d = from_buf(ptr, 5u);
|
2013-05-18 21:02:45 -05:00
|
|
|
|
assert_eq!(d.len(), 5u);
|
|
|
|
|
assert_eq!(d[0], 1);
|
|
|
|
|
assert_eq!(d[1], 2);
|
|
|
|
|
assert_eq!(d[2], 3);
|
|
|
|
|
assert_eq!(d[3], 4);
|
|
|
|
|
assert_eq!(d[4], 5);
|
2012-06-24 22:18:18 -05:00
|
|
|
|
}
|
2012-01-17 19:28:21 -06:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
2012-03-12 17:52:30 -05:00
|
|
|
|
fn test_from_fn() {
|
|
|
|
|
// Test on-stack from_fn.
|
2012-03-22 10:39:41 -05:00
|
|
|
|
let mut v = from_fn(3u, square);
|
2013-05-18 21:02:45 -05:00
|
|
|
|
assert_eq!(v.len(), 3u);
|
|
|
|
|
assert_eq!(v[0], 0u);
|
|
|
|
|
assert_eq!(v[1], 1u);
|
|
|
|
|
assert_eq!(v[2], 4u);
|
2012-01-17 19:28:21 -06:00
|
|
|
|
|
2012-03-12 17:52:30 -05:00
|
|
|
|
// Test on-heap from_fn.
|
|
|
|
|
v = from_fn(5u, square);
|
2013-05-18 21:02:45 -05:00
|
|
|
|
assert_eq!(v.len(), 5u);
|
|
|
|
|
assert_eq!(v[0], 0u);
|
|
|
|
|
assert_eq!(v[1], 1u);
|
|
|
|
|
assert_eq!(v[2], 4u);
|
|
|
|
|
assert_eq!(v[3], 9u);
|
|
|
|
|
assert_eq!(v[4], 16u);
|
2012-01-17 19:28:21 -06:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
2012-03-12 17:52:30 -05:00
|
|
|
|
fn test_from_elem() {
|
|
|
|
|
// Test on-stack from_elem.
|
2012-03-22 10:39:41 -05:00
|
|
|
|
let mut v = from_elem(2u, 10u);
|
2013-05-18 21:02:45 -05:00
|
|
|
|
assert_eq!(v.len(), 2u);
|
|
|
|
|
assert_eq!(v[0], 10u);
|
|
|
|
|
assert_eq!(v[1], 10u);
|
2012-01-17 19:28:21 -06:00
|
|
|
|
|
2012-03-12 17:52:30 -05:00
|
|
|
|
// Test on-heap from_elem.
|
|
|
|
|
v = from_elem(6u, 20u);
|
2013-05-18 21:02:45 -05:00
|
|
|
|
assert_eq!(v[0], 20u);
|
|
|
|
|
assert_eq!(v[1], 20u);
|
|
|
|
|
assert_eq!(v[2], 20u);
|
|
|
|
|
assert_eq!(v[3], 20u);
|
|
|
|
|
assert_eq!(v[4], 20u);
|
|
|
|
|
assert_eq!(v[5], 20u);
|
2012-01-17 19:28:21 -06:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_is_empty() {
|
2013-06-08 20:38:47 -05:00
|
|
|
|
let xs: [int, ..0] = [];
|
|
|
|
|
assert!(xs.is_empty());
|
|
|
|
|
assert!(![0].is_empty());
|
2012-01-17 19:28:21 -06:00
|
|
|
|
}
|
|
|
|
|
|
2013-01-08 02:24:43 -06:00
|
|
|
|
#[test]
|
|
|
|
|
fn test_len_divzero() {
|
2013-03-22 20:52:04 -05:00
|
|
|
|
type Z = [i8, ..0];
|
2013-01-08 02:24:43 -06:00
|
|
|
|
let v0 : &[Z] = &[];
|
|
|
|
|
let v1 : &[Z] = &[[]];
|
|
|
|
|
let v2 : &[Z] = &[[], []];
|
2013-10-16 20:34:01 -05:00
|
|
|
|
assert_eq!(mem::size_of::<Z>(), 0);
|
2013-05-18 21:02:45 -05:00
|
|
|
|
assert_eq!(v0.len(), 0);
|
|
|
|
|
assert_eq!(v1.len(), 1);
|
|
|
|
|
assert_eq!(v2.len(), 2);
|
2013-01-08 02:24:43 -06:00
|
|
|
|
}
|
|
|
|
|
|
2013-09-29 10:59:00 -05:00
|
|
|
|
#[test]
|
2013-12-23 07:38:02 -06:00
|
|
|
|
fn test_get() {
|
2013-09-29 10:59:00 -05:00
|
|
|
|
let mut a = ~[11];
|
2013-12-23 07:38:02 -06:00
|
|
|
|
assert_eq!(a.get(1), None);
|
2013-09-29 10:59:00 -05:00
|
|
|
|
a = ~[11, 12];
|
2013-12-23 07:38:02 -06:00
|
|
|
|
assert_eq!(a.get(1).unwrap(), &12);
|
2013-09-29 10:59:00 -05:00
|
|
|
|
a = ~[11, 12, 13];
|
2013-12-23 07:38:02 -06:00
|
|
|
|
assert_eq!(a.get(1).unwrap(), &12);
|
2013-09-29 10:59:00 -05:00
|
|
|
|
}
|
|
|
|
|
|
2012-01-17 19:28:21 -06:00
|
|
|
|
#[test]
|
|
|
|
|
fn test_head() {
|
2013-03-02 23:49:50 -06:00
|
|
|
|
let mut a = ~[];
|
2013-12-23 07:46:54 -06:00
|
|
|
|
assert_eq!(a.head(), None);
|
2013-03-02 23:49:50 -06:00
|
|
|
|
a = ~[11];
|
2013-12-23 07:46:54 -06:00
|
|
|
|
assert_eq!(a.head().unwrap(), &11);
|
2013-03-02 23:49:50 -06:00
|
|
|
|
a = ~[11, 12];
|
2013-12-23 07:46:54 -06:00
|
|
|
|
assert_eq!(a.head().unwrap(), &11);
|
2012-01-17 19:28:21 -06:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_tail() {
|
2012-06-29 18:26:56 -05:00
|
|
|
|
let mut a = ~[11];
|
2013-05-18 21:02:45 -05:00
|
|
|
|
assert_eq!(a.tail(), &[]);
|
2012-06-29 18:26:56 -05:00
|
|
|
|
a = ~[11, 12];
|
2013-05-18 21:02:45 -05:00
|
|
|
|
assert_eq!(a.tail(), &[12]);
|
2013-03-03 09:22:40 -06:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
#[should_fail]
|
|
|
|
|
fn test_tail_empty() {
|
|
|
|
|
let a: ~[int] = ~[];
|
|
|
|
|
a.tail();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_tailn() {
|
|
|
|
|
let mut a = ~[11, 12, 13];
|
2013-05-18 21:02:45 -05:00
|
|
|
|
assert_eq!(a.tailn(0), &[11, 12, 13]);
|
2013-03-03 09:22:40 -06:00
|
|
|
|
a = ~[11, 12, 13];
|
2013-05-18 21:02:45 -05:00
|
|
|
|
assert_eq!(a.tailn(2), &[13]);
|
2013-03-03 09:22:40 -06:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
#[should_fail]
|
|
|
|
|
fn test_tailn_empty() {
|
|
|
|
|
let a: ~[int] = ~[];
|
|
|
|
|
a.tailn(2);
|
2012-01-17 19:28:21 -06:00
|
|
|
|
}
|
|
|
|
|
|
2013-03-03 10:06:31 -06:00
|
|
|
|
#[test]
|
|
|
|
|
fn test_init() {
|
|
|
|
|
let mut a = ~[11];
|
2013-05-18 21:02:45 -05:00
|
|
|
|
assert_eq!(a.init(), &[]);
|
2013-03-03 10:06:31 -06:00
|
|
|
|
a = ~[11, 12];
|
2013-05-18 21:02:45 -05:00
|
|
|
|
assert_eq!(a.init(), &[11]);
|
2013-03-03 10:06:31 -06:00
|
|
|
|
}
|
|
|
|
|
|
2013-11-05 21:16:47 -06:00
|
|
|
|
#[test]
|
2013-03-03 10:06:31 -06:00
|
|
|
|
#[should_fail]
|
|
|
|
|
fn test_init_empty() {
|
|
|
|
|
let a: ~[int] = ~[];
|
|
|
|
|
a.init();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_initn() {
|
|
|
|
|
let mut a = ~[11, 12, 13];
|
2013-05-18 21:02:45 -05:00
|
|
|
|
assert_eq!(a.initn(0), &[11, 12, 13]);
|
2013-03-03 10:06:31 -06:00
|
|
|
|
a = ~[11, 12, 13];
|
2013-05-18 21:02:45 -05:00
|
|
|
|
assert_eq!(a.initn(2), &[11]);
|
2013-03-03 10:06:31 -06:00
|
|
|
|
}
|
|
|
|
|
|
2013-11-05 21:16:47 -06:00
|
|
|
|
#[test]
|
2013-03-03 10:06:31 -06:00
|
|
|
|
#[should_fail]
|
|
|
|
|
fn test_initn_empty() {
|
|
|
|
|
let a: ~[int] = ~[];
|
|
|
|
|
a.initn(2);
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-17 19:28:21 -06:00
|
|
|
|
#[test]
|
|
|
|
|
fn test_last() {
|
2013-03-05 21:39:18 -06:00
|
|
|
|
let mut a = ~[];
|
2013-12-23 08:08:23 -06:00
|
|
|
|
assert_eq!(a.last(), None);
|
2013-03-05 21:39:18 -06:00
|
|
|
|
a = ~[11];
|
2013-12-23 08:08:23 -06:00
|
|
|
|
assert_eq!(a.last().unwrap(), &11);
|
2013-03-05 21:39:18 -06:00
|
|
|
|
a = ~[11, 12];
|
2013-12-23 08:08:23 -06:00
|
|
|
|
assert_eq!(a.last().unwrap(), &12);
|
2012-01-17 19:28:21 -06:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_slice() {
|
2013-02-08 13:28:20 -06:00
|
|
|
|
// Test fixed length vector.
|
|
|
|
|
let vec_fixed = [1, 2, 3, 4];
|
2013-06-27 04:48:50 -05:00
|
|
|
|
let v_a = vec_fixed.slice(1u, vec_fixed.len()).to_owned();
|
2013-05-18 21:02:45 -05:00
|
|
|
|
assert_eq!(v_a.len(), 3u);
|
|
|
|
|
assert_eq!(v_a[0], 2);
|
|
|
|
|
assert_eq!(v_a[1], 3);
|
|
|
|
|
assert_eq!(v_a[2], 4);
|
2013-02-08 13:28:20 -06:00
|
|
|
|
|
|
|
|
|
// Test on stack.
|
|
|
|
|
let vec_stack = &[1, 2, 3];
|
2013-06-27 04:48:50 -05:00
|
|
|
|
let v_b = vec_stack.slice(1u, 3u).to_owned();
|
2013-05-18 21:02:45 -05:00
|
|
|
|
assert_eq!(v_b.len(), 2u);
|
|
|
|
|
assert_eq!(v_b[0], 2);
|
|
|
|
|
assert_eq!(v_b[1], 3);
|
2013-02-08 13:28:20 -06:00
|
|
|
|
|
|
|
|
|
// Test on exchange heap.
|
|
|
|
|
let vec_unique = ~[1, 2, 3, 4, 5, 6];
|
2013-06-27 04:48:50 -05:00
|
|
|
|
let v_d = vec_unique.slice(1u, 6u).to_owned();
|
2013-05-18 21:02:45 -05:00
|
|
|
|
assert_eq!(v_d.len(), 5u);
|
|
|
|
|
assert_eq!(v_d[0], 2);
|
|
|
|
|
assert_eq!(v_d[1], 3);
|
|
|
|
|
assert_eq!(v_d[2], 4);
|
|
|
|
|
assert_eq!(v_d[3], 5);
|
|
|
|
|
assert_eq!(v_d[4], 6);
|
2012-01-17 19:28:21 -06:00
|
|
|
|
}
|
|
|
|
|
|
2013-07-21 08:39:01 -05:00
|
|
|
|
#[test]
|
|
|
|
|
fn test_slice_from() {
|
|
|
|
|
let vec = &[1, 2, 3, 4];
|
|
|
|
|
assert_eq!(vec.slice_from(0), vec);
|
|
|
|
|
assert_eq!(vec.slice_from(2), &[3, 4]);
|
|
|
|
|
assert_eq!(vec.slice_from(4), &[]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_slice_to() {
|
|
|
|
|
let vec = &[1, 2, 3, 4];
|
|
|
|
|
assert_eq!(vec.slice_to(4), vec);
|
|
|
|
|
assert_eq!(vec.slice_to(2), &[1, 2]);
|
|
|
|
|
assert_eq!(vec.slice_to(0), &[]);
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-17 19:28:21 -06:00
|
|
|
|
|
2012-08-22 21:09:34 -05:00
|
|
|
|
#[test]
|
2013-12-23 09:20:52 -06:00
|
|
|
|
fn test_pop() {
|
2013-07-05 13:32:25 -05:00
|
|
|
|
let mut v = ~[5];
|
2013-12-23 09:20:52 -06:00
|
|
|
|
let e = v.pop();
|
2013-07-05 13:32:25 -05:00
|
|
|
|
assert_eq!(v.len(), 0);
|
|
|
|
|
assert_eq!(e, Some(5));
|
2013-12-23 09:20:52 -06:00
|
|
|
|
let f = v.pop();
|
2013-07-05 13:32:25 -05:00
|
|
|
|
assert_eq!(f, None);
|
2013-12-23 09:20:52 -06:00
|
|
|
|
let g = v.pop();
|
2013-07-05 13:32:25 -05:00
|
|
|
|
assert_eq!(g, None);
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-19 08:12:56 -06:00
|
|
|
|
#[test]
|
2012-08-22 21:09:34 -05:00
|
|
|
|
fn test_swap_remove() {
|
|
|
|
|
let mut v = ~[1, 2, 3, 4, 5];
|
2012-09-28 00:20:47 -05:00
|
|
|
|
let mut e = v.swap_remove(0);
|
2013-05-18 21:02:45 -05:00
|
|
|
|
assert_eq!(v.len(), 4);
|
|
|
|
|
assert_eq!(e, 1);
|
|
|
|
|
assert_eq!(v[0], 5);
|
2012-09-28 00:20:47 -05:00
|
|
|
|
e = v.swap_remove(3);
|
2013-05-18 21:02:45 -05:00
|
|
|
|
assert_eq!(v.len(), 3);
|
|
|
|
|
assert_eq!(e, 4);
|
|
|
|
|
assert_eq!(v[0], 5);
|
|
|
|
|
assert_eq!(v[1], 2);
|
|
|
|
|
assert_eq!(v[2], 3);
|
2012-08-22 21:09:34 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_swap_remove_noncopyable() {
|
|
|
|
|
// Tests that we don't accidentally run destructors twice.
|
2013-07-22 15:57:40 -05:00
|
|
|
|
let mut v = ~[::unstable::sync::Exclusive::new(()),
|
|
|
|
|
::unstable::sync::Exclusive::new(()),
|
|
|
|
|
::unstable::sync::Exclusive::new(())];
|
2012-09-28 00:20:47 -05:00
|
|
|
|
let mut _e = v.swap_remove(0);
|
2013-05-18 21:02:45 -05:00
|
|
|
|
assert_eq!(v.len(), 2);
|
2012-09-28 00:20:47 -05:00
|
|
|
|
_e = v.swap_remove(1);
|
2013-05-18 21:02:45 -05:00
|
|
|
|
assert_eq!(v.len(), 1);
|
2012-09-28 00:20:47 -05:00
|
|
|
|
_e = v.swap_remove(0);
|
2013-05-18 21:02:45 -05:00
|
|
|
|
assert_eq!(v.len(), 0);
|
2012-08-22 21:09:34 -05:00
|
|
|
|
}
|
|
|
|
|
|
2012-01-17 19:28:21 -06:00
|
|
|
|
#[test]
|
|
|
|
|
fn test_push() {
|
|
|
|
|
// Test on-stack push().
|
2012-06-29 18:26:56 -05:00
|
|
|
|
let mut v = ~[];
|
2012-09-26 19:33:34 -05:00
|
|
|
|
v.push(1);
|
2013-05-18 21:02:45 -05:00
|
|
|
|
assert_eq!(v.len(), 1u);
|
|
|
|
|
assert_eq!(v[0], 1);
|
2012-01-17 19:28:21 -06:00
|
|
|
|
|
|
|
|
|
// Test on-heap push().
|
2012-09-26 19:33:34 -05:00
|
|
|
|
v.push(2);
|
2013-05-18 21:02:45 -05:00
|
|
|
|
assert_eq!(v.len(), 2u);
|
|
|
|
|
assert_eq!(v[0], 1);
|
|
|
|
|
assert_eq!(v[1], 2);
|
2012-01-17 19:28:21 -06:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_grow() {
|
|
|
|
|
// Test on-stack grow().
|
2012-06-29 18:26:56 -05:00
|
|
|
|
let mut v = ~[];
|
2012-09-28 00:20:47 -05:00
|
|
|
|
v.grow(2u, &1);
|
2013-05-18 21:02:45 -05:00
|
|
|
|
assert_eq!(v.len(), 2u);
|
|
|
|
|
assert_eq!(v[0], 1);
|
|
|
|
|
assert_eq!(v[1], 1);
|
2012-01-17 19:28:21 -06:00
|
|
|
|
|
|
|
|
|
// Test on-heap grow().
|
2012-09-28 00:20:47 -05:00
|
|
|
|
v.grow(3u, &2);
|
2013-05-18 21:02:45 -05:00
|
|
|
|
assert_eq!(v.len(), 5u);
|
|
|
|
|
assert_eq!(v[0], 1);
|
|
|
|
|
assert_eq!(v[1], 1);
|
|
|
|
|
assert_eq!(v[2], 2);
|
|
|
|
|
assert_eq!(v[3], 2);
|
|
|
|
|
assert_eq!(v[4], 2);
|
2012-01-17 19:28:21 -06:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_grow_fn() {
|
2012-06-29 18:26:56 -05:00
|
|
|
|
let mut v = ~[];
|
2012-09-28 00:20:47 -05:00
|
|
|
|
v.grow_fn(3u, square);
|
2013-05-18 21:02:45 -05:00
|
|
|
|
assert_eq!(v.len(), 3u);
|
|
|
|
|
assert_eq!(v[0], 0u);
|
|
|
|
|
assert_eq!(v[1], 1u);
|
|
|
|
|
assert_eq!(v[2], 4u);
|
2012-01-17 19:28:21 -06:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_grow_set() {
|
2012-09-21 20:43:30 -05:00
|
|
|
|
let mut v = ~[1, 2, 3];
|
2012-09-28 00:20:47 -05:00
|
|
|
|
v.grow_set(4u, &4, 5);
|
2013-05-18 21:02:45 -05:00
|
|
|
|
assert_eq!(v.len(), 5u);
|
|
|
|
|
assert_eq!(v[0], 1);
|
|
|
|
|
assert_eq!(v[1], 2);
|
|
|
|
|
assert_eq!(v[2], 3);
|
|
|
|
|
assert_eq!(v[3], 4);
|
|
|
|
|
assert_eq!(v[4], 5);
|
2012-01-17 19:28:21 -06:00
|
|
|
|
}
|
|
|
|
|
|
2012-08-29 03:21:49 -05:00
|
|
|
|
#[test]
|
|
|
|
|
fn test_truncate() {
|
2013-12-21 19:50:54 -06:00
|
|
|
|
let mut v = ~[~6,~5,~4];
|
2012-09-28 00:20:47 -05:00
|
|
|
|
v.truncate(1);
|
2013-05-18 21:02:45 -05:00
|
|
|
|
assert_eq!(v.len(), 1);
|
|
|
|
|
assert_eq!(*(v[0]), 6);
|
2012-08-29 03:21:49 -05:00
|
|
|
|
// If the unsafe block didn't drop things properly, we blow up here.
|
|
|
|
|
}
|
2013-01-24 22:08:16 -06:00
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_clear() {
|
2013-12-21 19:50:54 -06:00
|
|
|
|
let mut v = ~[~6,~5,~4];
|
2013-01-24 22:08:16 -06:00
|
|
|
|
v.clear();
|
2013-05-18 21:02:45 -05:00
|
|
|
|
assert_eq!(v.len(), 0);
|
2013-01-24 22:08:16 -06:00
|
|
|
|
// If the unsafe block didn't drop things properly, we blow up here.
|
|
|
|
|
}
|
2012-08-29 03:21:49 -05:00
|
|
|
|
|
2012-09-01 14:11:54 -05:00
|
|
|
|
#[test]
|
|
|
|
|
fn test_dedup() {
|
2012-10-02 13:37:37 -05:00
|
|
|
|
fn case(a: ~[uint], b: ~[uint]) {
|
2012-12-12 17:38:50 -06:00
|
|
|
|
let mut v = a;
|
2012-09-28 00:20:47 -05:00
|
|
|
|
v.dedup();
|
2013-05-18 21:02:45 -05:00
|
|
|
|
assert_eq!(v, b);
|
2012-09-01 14:11:54 -05:00
|
|
|
|
}
|
|
|
|
|
case(~[], ~[]);
|
|
|
|
|
case(~[1], ~[1]);
|
|
|
|
|
case(~[1,1], ~[1]);
|
|
|
|
|
case(~[1,2,3], ~[1,2,3]);
|
|
|
|
|
case(~[1,1,2,3], ~[1,2,3]);
|
|
|
|
|
case(~[1,2,2,3], ~[1,2,3]);
|
|
|
|
|
case(~[1,2,3,3], ~[1,2,3]);
|
|
|
|
|
case(~[1,1,2,2,2,3,3], ~[1,2,3]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_dedup_unique() {
|
|
|
|
|
let mut v0 = ~[~1, ~1, ~2, ~3];
|
2012-09-28 00:20:47 -05:00
|
|
|
|
v0.dedup();
|
2012-09-01 14:11:54 -05:00
|
|
|
|
let mut v1 = ~[~1, ~2, ~2, ~3];
|
2012-09-28 00:20:47 -05:00
|
|
|
|
v1.dedup();
|
2012-09-01 14:11:54 -05:00
|
|
|
|
let mut v2 = ~[~1, ~2, ~3, ~3];
|
2012-09-28 00:20:47 -05:00
|
|
|
|
v2.dedup();
|
2012-09-01 14:11:54 -05:00
|
|
|
|
/*
|
|
|
|
|
* If the ~pointers were leaked or otherwise misused, valgrind and/or
|
|
|
|
|
* rustrt should raise errors.
|
|
|
|
|
*/
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_dedup_shared() {
|
2013-12-21 19:50:54 -06:00
|
|
|
|
let mut v0 = ~[~1, ~1, ~2, ~3];
|
2012-09-28 00:20:47 -05:00
|
|
|
|
v0.dedup();
|
2013-12-21 19:50:54 -06:00
|
|
|
|
let mut v1 = ~[~1, ~2, ~2, ~3];
|
2012-09-28 00:20:47 -05:00
|
|
|
|
v1.dedup();
|
2013-12-21 19:50:54 -06:00
|
|
|
|
let mut v2 = ~[~1, ~2, ~3, ~3];
|
2012-09-28 00:20:47 -05:00
|
|
|
|
v2.dedup();
|
2012-09-01 14:11:54 -05:00
|
|
|
|
/*
|
2013-12-21 19:50:54 -06:00
|
|
|
|
* If the pointers were leaked or otherwise misused, valgrind and/or
|
2012-09-01 14:11:54 -05:00
|
|
|
|
* rustrt should raise errors.
|
|
|
|
|
*/
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-17 19:28:21 -06:00
|
|
|
|
#[test]
|
|
|
|
|
fn test_map() {
|
|
|
|
|
// Test on-stack map.
|
2013-06-29 00:05:50 -05:00
|
|
|
|
let v = &[1u, 2u, 3u];
|
|
|
|
|
let mut w = v.map(square_ref);
|
2013-05-18 21:02:45 -05:00
|
|
|
|
assert_eq!(w.len(), 3u);
|
|
|
|
|
assert_eq!(w[0], 1u);
|
|
|
|
|
assert_eq!(w[1], 4u);
|
|
|
|
|
assert_eq!(w[2], 9u);
|
2012-01-17 19:28:21 -06:00
|
|
|
|
|
|
|
|
|
// Test on-heap map.
|
2013-06-29 00:05:50 -05:00
|
|
|
|
let v = ~[1u, 2u, 3u, 4u, 5u];
|
|
|
|
|
w = v.map(square_ref);
|
2013-05-18 21:02:45 -05:00
|
|
|
|
assert_eq!(w.len(), 5u);
|
|
|
|
|
assert_eq!(w[0], 1u);
|
|
|
|
|
assert_eq!(w[1], 4u);
|
|
|
|
|
assert_eq!(w[2], 9u);
|
|
|
|
|
assert_eq!(w[3], 16u);
|
|
|
|
|
assert_eq!(w[4], 25u);
|
2012-01-17 19:28:21 -06:00
|
|
|
|
}
|
|
|
|
|
|
2013-01-14 01:10:54 -06:00
|
|
|
|
#[test]
|
|
|
|
|
fn test_retain() {
|
|
|
|
|
let mut v = ~[1, 2, 3, 4, 5];
|
|
|
|
|
v.retain(is_odd);
|
2013-05-18 21:02:45 -05:00
|
|
|
|
assert_eq!(v, ~[1, 3, 5]);
|
2013-01-14 01:10:54 -06:00
|
|
|
|
}
|
|
|
|
|
|
2012-01-17 19:28:21 -06:00
|
|
|
|
#[test]
|
|
|
|
|
fn test_zip_unzip() {
|
2013-08-13 20:29:16 -05:00
|
|
|
|
let z1 = ~[(1, 4), (2, 5), (3, 6)];
|
2012-01-17 19:28:21 -06:00
|
|
|
|
|
2013-09-08 21:46:32 -05:00
|
|
|
|
let (left, right) = unzip(z1.iter().map(|&x| x));
|
2012-01-17 19:28:21 -06:00
|
|
|
|
|
2013-05-18 21:02:45 -05:00
|
|
|
|
assert_eq!((1, 4), (left[0], right[0]));
|
|
|
|
|
assert_eq!((2, 5), (left[1], right[1]));
|
|
|
|
|
assert_eq!((3, 6), (left[2], right[2]));
|
2012-01-17 19:28:21 -06:00
|
|
|
|
}
|
|
|
|
|
|
std::vec: Replace each_permutation with a new Permutations iterator
Introduce ElementSwaps and Permutations. ElementSwaps is an iterator
that for a given sequence length yields the element swaps needed
to visit each possible permutation of the sequence in turn.
We use an algorithm that generates a sequence such that each permutation
is only one swap apart.
let mut v = [1, 2, 3];
for perm in v.permutations_iter() {
// yields 1 2 3 | 1 3 2 | 3 1 2 | 3 2 1 | 2 3 1 | 2 1 3
}
The `.permutations_iter()` yields clones of the input vector for each
permutation.
If a copyless traversal is needed, it can be constructed with
`ElementSwaps`:
for (a, b) in ElementSwaps::new(3) {
// yields (2, 1), (1, 0), (2, 1) ...
v.swap(a, b);
// ..
}
2013-09-08 18:29:07 -05:00
|
|
|
|
#[test]
|
|
|
|
|
fn test_element_swaps() {
|
|
|
|
|
let mut v = [1, 2, 3];
|
|
|
|
|
for (i, (a, b)) in ElementSwaps::new(v.len()).enumerate() {
|
|
|
|
|
v.swap(a, b);
|
|
|
|
|
match i {
|
|
|
|
|
0 => assert_eq!(v, [1, 3, 2]),
|
|
|
|
|
1 => assert_eq!(v, [3, 1, 2]),
|
|
|
|
|
2 => assert_eq!(v, [3, 2, 1]),
|
|
|
|
|
3 => assert_eq!(v, [2, 3, 1]),
|
|
|
|
|
4 => assert_eq!(v, [2, 1, 3]),
|
|
|
|
|
5 => assert_eq!(v, [1, 2, 3]),
|
2013-10-21 15:08:31 -05:00
|
|
|
|
_ => fail!(),
|
std::vec: Replace each_permutation with a new Permutations iterator
Introduce ElementSwaps and Permutations. ElementSwaps is an iterator
that for a given sequence length yields the element swaps needed
to visit each possible permutation of the sequence in turn.
We use an algorithm that generates a sequence such that each permutation
is only one swap apart.
let mut v = [1, 2, 3];
for perm in v.permutations_iter() {
// yields 1 2 3 | 1 3 2 | 3 1 2 | 3 2 1 | 2 3 1 | 2 1 3
}
The `.permutations_iter()` yields clones of the input vector for each
permutation.
If a copyless traversal is needed, it can be constructed with
`ElementSwaps`:
for (a, b) in ElementSwaps::new(3) {
// yields (2, 1), (1, 0), (2, 1) ...
v.swap(a, b);
// ..
}
2013-09-08 18:29:07 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_permutations() {
|
|
|
|
|
{
|
|
|
|
|
let v: [int, ..0] = [];
|
2013-11-23 04:18:51 -06:00
|
|
|
|
let mut it = v.permutations();
|
std::vec: Replace each_permutation with a new Permutations iterator
Introduce ElementSwaps and Permutations. ElementSwaps is an iterator
that for a given sequence length yields the element swaps needed
to visit each possible permutation of the sequence in turn.
We use an algorithm that generates a sequence such that each permutation
is only one swap apart.
let mut v = [1, 2, 3];
for perm in v.permutations_iter() {
// yields 1 2 3 | 1 3 2 | 3 1 2 | 3 2 1 | 2 3 1 | 2 1 3
}
The `.permutations_iter()` yields clones of the input vector for each
permutation.
If a copyless traversal is needed, it can be constructed with
`ElementSwaps`:
for (a, b) in ElementSwaps::new(3) {
// yields (2, 1), (1, 0), (2, 1) ...
v.swap(a, b);
// ..
}
2013-09-08 18:29:07 -05:00
|
|
|
|
assert_eq!(it.next(), None);
|
|
|
|
|
}
|
|
|
|
|
{
|
|
|
|
|
let v = [~"Hello"];
|
2013-11-23 04:18:51 -06:00
|
|
|
|
let mut it = v.permutations();
|
std::vec: Replace each_permutation with a new Permutations iterator
Introduce ElementSwaps and Permutations. ElementSwaps is an iterator
that for a given sequence length yields the element swaps needed
to visit each possible permutation of the sequence in turn.
We use an algorithm that generates a sequence such that each permutation
is only one swap apart.
let mut v = [1, 2, 3];
for perm in v.permutations_iter() {
// yields 1 2 3 | 1 3 2 | 3 1 2 | 3 2 1 | 2 3 1 | 2 1 3
}
The `.permutations_iter()` yields clones of the input vector for each
permutation.
If a copyless traversal is needed, it can be constructed with
`ElementSwaps`:
for (a, b) in ElementSwaps::new(3) {
// yields (2, 1), (1, 0), (2, 1) ...
v.swap(a, b);
// ..
}
2013-09-08 18:29:07 -05:00
|
|
|
|
assert_eq!(it.next(), None);
|
|
|
|
|
}
|
|
|
|
|
{
|
|
|
|
|
let v = [1, 2, 3];
|
2013-11-23 04:18:51 -06:00
|
|
|
|
let mut it = v.permutations();
|
std::vec: Replace each_permutation with a new Permutations iterator
Introduce ElementSwaps and Permutations. ElementSwaps is an iterator
that for a given sequence length yields the element swaps needed
to visit each possible permutation of the sequence in turn.
We use an algorithm that generates a sequence such that each permutation
is only one swap apart.
let mut v = [1, 2, 3];
for perm in v.permutations_iter() {
// yields 1 2 3 | 1 3 2 | 3 1 2 | 3 2 1 | 2 3 1 | 2 1 3
}
The `.permutations_iter()` yields clones of the input vector for each
permutation.
If a copyless traversal is needed, it can be constructed with
`ElementSwaps`:
for (a, b) in ElementSwaps::new(3) {
// yields (2, 1), (1, 0), (2, 1) ...
v.swap(a, b);
// ..
}
2013-09-08 18:29:07 -05:00
|
|
|
|
assert_eq!(it.next(), Some(~[1,2,3]));
|
|
|
|
|
assert_eq!(it.next(), Some(~[1,3,2]));
|
|
|
|
|
assert_eq!(it.next(), Some(~[3,1,2]));
|
|
|
|
|
assert_eq!(it.next(), Some(~[3,2,1]));
|
|
|
|
|
assert_eq!(it.next(), Some(~[2,3,1]));
|
|
|
|
|
assert_eq!(it.next(), Some(~[2,1,3]));
|
|
|
|
|
assert_eq!(it.next(), None);
|
|
|
|
|
}
|
|
|
|
|
{
|
2014-02-19 21:29:58 -06:00
|
|
|
|
// check that we have N! permutations
|
std::vec: Replace each_permutation with a new Permutations iterator
Introduce ElementSwaps and Permutations. ElementSwaps is an iterator
that for a given sequence length yields the element swaps needed
to visit each possible permutation of the sequence in turn.
We use an algorithm that generates a sequence such that each permutation
is only one swap apart.
let mut v = [1, 2, 3];
for perm in v.permutations_iter() {
// yields 1 2 3 | 1 3 2 | 3 1 2 | 3 2 1 | 2 3 1 | 2 1 3
}
The `.permutations_iter()` yields clones of the input vector for each
permutation.
If a copyless traversal is needed, it can be constructed with
`ElementSwaps`:
for (a, b) in ElementSwaps::new(3) {
// yields (2, 1), (1, 0), (2, 1) ...
v.swap(a, b);
// ..
}
2013-09-08 18:29:07 -05:00
|
|
|
|
let v = ['A', 'B', 'C', 'D', 'E', 'F'];
|
2014-02-19 21:29:58 -06:00
|
|
|
|
let mut amt = 0;
|
|
|
|
|
for _perm in v.permutations() {
|
|
|
|
|
amt += 1;
|
std::vec: Replace each_permutation with a new Permutations iterator
Introduce ElementSwaps and Permutations. ElementSwaps is an iterator
that for a given sequence length yields the element swaps needed
to visit each possible permutation of the sequence in turn.
We use an algorithm that generates a sequence such that each permutation
is only one swap apart.
let mut v = [1, 2, 3];
for perm in v.permutations_iter() {
// yields 1 2 3 | 1 3 2 | 3 1 2 | 3 2 1 | 2 3 1 | 2 1 3
}
The `.permutations_iter()` yields clones of the input vector for each
permutation.
If a copyless traversal is needed, it can be constructed with
`ElementSwaps`:
for (a, b) in ElementSwaps::new(3) {
// yields (2, 1), (1, 0), (2, 1) ...
v.swap(a, b);
// ..
}
2013-09-08 18:29:07 -05:00
|
|
|
|
}
|
2014-02-19 21:29:58 -06:00
|
|
|
|
assert_eq!(amt, 2 * 3 * 4 * 5 * 6);
|
std::vec: Replace each_permutation with a new Permutations iterator
Introduce ElementSwaps and Permutations. ElementSwaps is an iterator
that for a given sequence length yields the element swaps needed
to visit each possible permutation of the sequence in turn.
We use an algorithm that generates a sequence such that each permutation
is only one swap apart.
let mut v = [1, 2, 3];
for perm in v.permutations_iter() {
// yields 1 2 3 | 1 3 2 | 3 1 2 | 3 2 1 | 2 3 1 | 2 1 3
}
The `.permutations_iter()` yields clones of the input vector for each
permutation.
If a copyless traversal is needed, it can be constructed with
`ElementSwaps`:
for (a, b) in ElementSwaps::new(3) {
// yields (2, 1), (1, 0), (2, 1) ...
v.swap(a, b);
// ..
}
2013-09-08 18:29:07 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-17 19:28:21 -06:00
|
|
|
|
#[test]
|
2012-03-18 19:14:43 -05:00
|
|
|
|
fn test_position_elem() {
|
2013-06-28 11:08:32 -05:00
|
|
|
|
assert!([].position_elem(&1).is_none());
|
2012-01-26 10:39:45 -06:00
|
|
|
|
|
2012-06-29 18:26:56 -05:00
|
|
|
|
let v1 = ~[1, 2, 3, 3, 2, 5];
|
2013-06-28 11:08:32 -05:00
|
|
|
|
assert_eq!(v1.position_elem(&1), Some(0u));
|
|
|
|
|
assert_eq!(v1.position_elem(&2), Some(1u));
|
|
|
|
|
assert_eq!(v1.position_elem(&5), Some(5u));
|
|
|
|
|
assert!(v1.position_elem(&4).is_none());
|
2012-01-26 20:14:27 -06:00
|
|
|
|
}
|
|
|
|
|
|
2013-01-04 15:52:18 -06:00
|
|
|
|
#[test]
|
|
|
|
|
fn test_bsearch_elem() {
|
2013-06-28 22:35:25 -05:00
|
|
|
|
assert_eq!([1,2,3,4,5].bsearch_elem(&5), Some(4));
|
|
|
|
|
assert_eq!([1,2,3,4,5].bsearch_elem(&4), Some(3));
|
|
|
|
|
assert_eq!([1,2,3,4,5].bsearch_elem(&3), Some(2));
|
|
|
|
|
assert_eq!([1,2,3,4,5].bsearch_elem(&2), Some(1));
|
|
|
|
|
assert_eq!([1,2,3,4,5].bsearch_elem(&1), Some(0));
|
2013-05-18 21:02:45 -05:00
|
|
|
|
|
2013-06-28 22:35:25 -05:00
|
|
|
|
assert_eq!([2,4,6,8,10].bsearch_elem(&1), None);
|
|
|
|
|
assert_eq!([2,4,6,8,10].bsearch_elem(&5), None);
|
|
|
|
|
assert_eq!([2,4,6,8,10].bsearch_elem(&4), Some(1));
|
|
|
|
|
assert_eq!([2,4,6,8,10].bsearch_elem(&10), Some(4));
|
2013-05-18 21:02:45 -05:00
|
|
|
|
|
2013-06-28 22:35:25 -05:00
|
|
|
|
assert_eq!([2,4,6,8].bsearch_elem(&1), None);
|
|
|
|
|
assert_eq!([2,4,6,8].bsearch_elem(&5), None);
|
|
|
|
|
assert_eq!([2,4,6,8].bsearch_elem(&4), Some(1));
|
|
|
|
|
assert_eq!([2,4,6,8].bsearch_elem(&8), Some(3));
|
2013-05-18 21:02:45 -05:00
|
|
|
|
|
2013-06-28 22:35:25 -05:00
|
|
|
|
assert_eq!([2,4,6].bsearch_elem(&1), None);
|
|
|
|
|
assert_eq!([2,4,6].bsearch_elem(&5), None);
|
|
|
|
|
assert_eq!([2,4,6].bsearch_elem(&4), Some(1));
|
|
|
|
|
assert_eq!([2,4,6].bsearch_elem(&6), Some(2));
|
2013-05-18 21:02:45 -05:00
|
|
|
|
|
2013-06-28 22:35:25 -05:00
|
|
|
|
assert_eq!([2,4].bsearch_elem(&1), None);
|
|
|
|
|
assert_eq!([2,4].bsearch_elem(&5), None);
|
|
|
|
|
assert_eq!([2,4].bsearch_elem(&2), Some(0));
|
|
|
|
|
assert_eq!([2,4].bsearch_elem(&4), Some(1));
|
2013-05-18 21:02:45 -05:00
|
|
|
|
|
2013-06-28 22:35:25 -05:00
|
|
|
|
assert_eq!([2].bsearch_elem(&1), None);
|
|
|
|
|
assert_eq!([2].bsearch_elem(&5), None);
|
|
|
|
|
assert_eq!([2].bsearch_elem(&2), Some(0));
|
2013-05-18 21:02:45 -05:00
|
|
|
|
|
2013-06-28 22:35:25 -05:00
|
|
|
|
assert_eq!([].bsearch_elem(&1), None);
|
|
|
|
|
assert_eq!([].bsearch_elem(&5), None);
|
2013-01-08 10:44:31 -06:00
|
|
|
|
|
2013-06-28 22:35:25 -05:00
|
|
|
|
assert!([1,1,1,1,1].bsearch_elem(&1) != None);
|
|
|
|
|
assert!([1,1,1,1,2].bsearch_elem(&1) != None);
|
|
|
|
|
assert!([1,1,1,2,2].bsearch_elem(&1) != None);
|
|
|
|
|
assert!([1,1,2,2,2].bsearch_elem(&1) != None);
|
|
|
|
|
assert_eq!([1,2,2,2,2].bsearch_elem(&1), Some(0));
|
2013-01-08 10:44:31 -06:00
|
|
|
|
|
2013-06-28 22:35:25 -05:00
|
|
|
|
assert_eq!([1,2,3,4,5].bsearch_elem(&6), None);
|
|
|
|
|
assert_eq!([1,2,3,4,5].bsearch_elem(&0), None);
|
2013-01-04 15:52:18 -06:00
|
|
|
|
}
|
|
|
|
|
|
2012-01-17 19:28:21 -06:00
|
|
|
|
#[test]
|
2013-07-01 21:58:23 -05:00
|
|
|
|
fn test_reverse() {
|
2013-02-12 17:34:48 -06:00
|
|
|
|
let mut v: ~[int] = ~[10, 20];
|
2013-05-18 21:02:45 -05:00
|
|
|
|
assert_eq!(v[0], 10);
|
|
|
|
|
assert_eq!(v[1], 20);
|
2013-06-28 11:54:03 -05:00
|
|
|
|
v.reverse();
|
2013-05-18 21:02:45 -05:00
|
|
|
|
assert_eq!(v[0], 20);
|
|
|
|
|
assert_eq!(v[1], 10);
|
2013-07-01 21:58:23 -05:00
|
|
|
|
|
2013-02-12 17:34:48 -06:00
|
|
|
|
let mut v3: ~[int] = ~[];
|
2013-06-28 11:54:03 -05:00
|
|
|
|
v3.reverse();
|
2013-07-01 21:58:23 -05:00
|
|
|
|
assert!(v3.is_empty());
|
2012-01-17 19:28:21 -06:00
|
|
|
|
}
|
|
|
|
|
|
2013-12-18 16:24:26 -06:00
|
|
|
|
#[test]
|
|
|
|
|
fn test_sort() {
|
|
|
|
|
for len in range(4u, 25) {
|
|
|
|
|
for _ in range(0, 100) {
|
|
|
|
|
let mut v = task_rng().gen_vec::<uint>(len);
|
2013-12-19 06:03:11 -06:00
|
|
|
|
let mut v1 = v.clone();
|
2013-12-19 21:42:00 -06:00
|
|
|
|
|
2013-12-19 06:03:11 -06:00
|
|
|
|
v.sort();
|
|
|
|
|
assert!(v.windows(2).all(|w| w[0] <= w[1]));
|
|
|
|
|
|
2013-12-19 21:42:00 -06:00
|
|
|
|
v1.sort_by(|a, b| a.cmp(b));
|
2013-12-19 06:03:11 -06:00
|
|
|
|
assert!(v1.windows(2).all(|w| w[0] <= w[1]));
|
|
|
|
|
|
2013-12-19 21:42:00 -06:00
|
|
|
|
v1.sort_by(|a, b| b.cmp(a));
|
2013-12-19 06:03:11 -06:00
|
|
|
|
assert!(v1.windows(2).all(|w| w[0] >= w[1]));
|
2013-12-18 16:24:26 -06:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// shouldn't fail/crash
|
|
|
|
|
let mut v: [uint, .. 0] = [];
|
2013-12-19 21:42:00 -06:00
|
|
|
|
v.sort();
|
2013-12-18 16:24:26 -06:00
|
|
|
|
|
|
|
|
|
let mut v = [0xDEADBEEF];
|
2013-12-19 21:42:00 -06:00
|
|
|
|
v.sort();
|
2013-12-18 16:24:26 -06:00
|
|
|
|
assert_eq!(v, [0xDEADBEEF]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_sort_stability() {
|
|
|
|
|
for len in range(4, 25) {
|
|
|
|
|
for _ in range(0 , 10) {
|
|
|
|
|
let mut counts = [0, .. 10];
|
|
|
|
|
|
|
|
|
|
// create a vector like [(6, 1), (5, 1), (6, 2), ...],
|
|
|
|
|
// where the first item of each tuple is random, but
|
|
|
|
|
// the second item represents which occurrence of that
|
|
|
|
|
// number this element is, i.e. the second elements
|
|
|
|
|
// will occur in sorted order.
|
|
|
|
|
let mut v = range(0, len).map(|_| {
|
|
|
|
|
let n = task_rng().gen::<uint>() % 10;
|
|
|
|
|
counts[n] += 1;
|
|
|
|
|
(n, counts[n])
|
|
|
|
|
}).to_owned_vec();
|
|
|
|
|
|
|
|
|
|
// only sort on the first element, so an unstable sort
|
|
|
|
|
// may mix up the counts.
|
2013-12-19 21:42:00 -06:00
|
|
|
|
v.sort_by(|&(a,_), &(b,_)| a.cmp(&b));
|
2013-12-18 16:24:26 -06:00
|
|
|
|
|
|
|
|
|
// this comparison includes the count (the second item
|
|
|
|
|
// of the tuple), so elements with equal first items
|
|
|
|
|
// will need to be ordered with increasing
|
|
|
|
|
// counts... i.e. exactly asserting that this sort is
|
|
|
|
|
// stable.
|
|
|
|
|
assert!(v.windows(2).all(|w| w[0] <= w[1]));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-01-07 10:49:41 -06:00
|
|
|
|
#[test]
|
|
|
|
|
fn test_partition() {
|
2013-06-27 09:10:18 -05:00
|
|
|
|
assert_eq!((~[]).partition(|x: &int| *x < 3), (~[], ~[]));
|
|
|
|
|
assert_eq!((~[1, 2, 3]).partition(|x: &int| *x < 4), (~[1, 2, 3], ~[]));
|
|
|
|
|
assert_eq!((~[1, 2, 3]).partition(|x: &int| *x < 2), (~[1], ~[2, 3]));
|
|
|
|
|
assert_eq!((~[1, 2, 3]).partition(|x: &int| *x < 0), (~[], ~[1, 2, 3]));
|
2013-01-07 10:49:41 -06:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_partitioned() {
|
2013-05-23 11:39:17 -05:00
|
|
|
|
assert_eq!(([]).partitioned(|x: &int| *x < 3), (~[], ~[]))
|
|
|
|
|
assert_eq!(([1, 2, 3]).partitioned(|x: &int| *x < 4), (~[1, 2, 3], ~[]));
|
|
|
|
|
assert_eq!(([1, 2, 3]).partitioned(|x: &int| *x < 2), (~[1], ~[2, 3]));
|
|
|
|
|
assert_eq!(([1, 2, 3]).partitioned(|x: &int| *x < 0), (~[], ~[1, 2, 3]));
|
2013-01-07 10:49:41 -06:00
|
|
|
|
}
|
|
|
|
|
|
2012-01-17 19:28:21 -06:00
|
|
|
|
#[test]
|
|
|
|
|
fn test_concat() {
|
2013-09-27 21:37:20 -05:00
|
|
|
|
let v: [~[int], ..0] = [];
|
|
|
|
|
assert_eq!(v.concat_vec(), ~[]);
|
2013-06-14 21:56:41 -05:00
|
|
|
|
assert_eq!([~[1], ~[2,3]].concat_vec(), ~[1, 2, 3]);
|
2013-06-02 22:19:37 -05:00
|
|
|
|
|
2013-06-14 21:56:41 -05:00
|
|
|
|
assert_eq!([&[1], &[2,3]].concat_vec(), ~[1, 2, 3]);
|
2012-01-17 19:28:21 -06:00
|
|
|
|
}
|
|
|
|
|
|
2012-01-28 17:41:53 -06:00
|
|
|
|
#[test]
|
|
|
|
|
fn test_connect() {
|
2013-09-27 21:37:20 -05:00
|
|
|
|
let v: [~[int], ..0] = [];
|
|
|
|
|
assert_eq!(v.connect_vec(&0), ~[]);
|
2013-06-14 21:56:41 -05:00
|
|
|
|
assert_eq!([~[1], ~[2, 3]].connect_vec(&0), ~[1, 0, 2, 3]);
|
|
|
|
|
assert_eq!([~[1], ~[2], ~[3]].connect_vec(&0), ~[1, 0, 2, 0, 3]);
|
2013-06-02 22:19:37 -05:00
|
|
|
|
|
2013-09-27 21:37:20 -05:00
|
|
|
|
assert_eq!(v.connect_vec(&0), ~[]);
|
2013-06-14 21:56:41 -05:00
|
|
|
|
assert_eq!([&[1], &[2, 3]].connect_vec(&0), ~[1, 0, 2, 3]);
|
|
|
|
|
assert_eq!([&[1], &[2], &[3]].connect_vec(&0), ~[1, 0, 2, 0, 3]);
|
2012-01-28 17:41:53 -06:00
|
|
|
|
}
|
|
|
|
|
|
2013-07-05 13:32:25 -05:00
|
|
|
|
#[test]
|
|
|
|
|
fn test_shift() {
|
|
|
|
|
let mut x = ~[1, 2, 3];
|
2013-12-23 09:40:42 -06:00
|
|
|
|
assert_eq!(x.shift(), Some(1));
|
2013-07-05 13:32:25 -05:00
|
|
|
|
assert_eq!(&x, &~[2, 3]);
|
2013-12-23 09:40:42 -06:00
|
|
|
|
assert_eq!(x.shift(), Some(2));
|
|
|
|
|
assert_eq!(x.shift(), Some(3));
|
|
|
|
|
assert_eq!(x.shift(), None);
|
2013-07-05 13:32:25 -05:00
|
|
|
|
assert_eq!(x.len(), 0);
|
|
|
|
|
}
|
|
|
|
|
|
2012-06-22 18:31:57 -05:00
|
|
|
|
#[test]
|
|
|
|
|
fn test_unshift() {
|
2012-06-29 18:26:56 -05:00
|
|
|
|
let mut x = ~[1, 2, 3];
|
2012-09-28 00:20:47 -05:00
|
|
|
|
x.unshift(0);
|
2013-05-18 21:02:45 -05:00
|
|
|
|
assert_eq!(x, ~[0, 1, 2, 3]);
|
2012-06-22 18:31:57 -05:00
|
|
|
|
}
|
|
|
|
|
|
2012-11-25 07:28:16 -06:00
|
|
|
|
#[test]
|
|
|
|
|
fn test_insert() {
|
|
|
|
|
let mut a = ~[1, 2, 4];
|
|
|
|
|
a.insert(2, 3);
|
2013-05-18 21:02:45 -05:00
|
|
|
|
assert_eq!(a, ~[1, 2, 3, 4]);
|
2012-11-25 07:28:16 -06:00
|
|
|
|
|
|
|
|
|
let mut a = ~[1, 2, 3];
|
|
|
|
|
a.insert(0, 0);
|
2013-05-18 21:02:45 -05:00
|
|
|
|
assert_eq!(a, ~[0, 1, 2, 3]);
|
2012-11-25 07:28:16 -06:00
|
|
|
|
|
|
|
|
|
let mut a = ~[1, 2, 3];
|
|
|
|
|
a.insert(3, 4);
|
2013-05-18 21:02:45 -05:00
|
|
|
|
assert_eq!(a, ~[1, 2, 3, 4]);
|
2012-11-25 07:28:16 -06:00
|
|
|
|
|
|
|
|
|
let mut a = ~[];
|
|
|
|
|
a.insert(0, 1);
|
2013-05-18 21:02:45 -05:00
|
|
|
|
assert_eq!(a, ~[1]);
|
2012-11-25 07:28:16 -06:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
#[should_fail]
|
|
|
|
|
fn test_insert_oob() {
|
|
|
|
|
let mut a = ~[1, 2, 3];
|
|
|
|
|
a.insert(4, 5);
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-18 20:56:53 -06:00
|
|
|
|
#[test]
|
2013-12-23 09:53:20 -06:00
|
|
|
|
fn test_remove() {
|
2013-12-18 20:56:53 -06:00
|
|
|
|
let mut a = ~[1,2,3,4];
|
|
|
|
|
|
2013-12-23 09:53:20 -06:00
|
|
|
|
assert_eq!(a.remove(2), Some(3));
|
2013-12-18 20:56:53 -06:00
|
|
|
|
assert_eq!(a, ~[1,2,4]);
|
|
|
|
|
|
2013-12-23 09:53:20 -06:00
|
|
|
|
assert_eq!(a.remove(2), Some(4));
|
2013-12-18 20:56:53 -06:00
|
|
|
|
assert_eq!(a, ~[1,2]);
|
|
|
|
|
|
2013-12-23 09:53:20 -06:00
|
|
|
|
assert_eq!(a.remove(2), None);
|
2013-12-18 20:56:53 -06:00
|
|
|
|
assert_eq!(a, ~[1,2]);
|
|
|
|
|
|
2013-12-23 09:53:20 -06:00
|
|
|
|
assert_eq!(a.remove(0), Some(1));
|
2013-12-18 20:56:53 -06:00
|
|
|
|
assert_eq!(a, ~[2]);
|
|
|
|
|
|
2013-12-23 09:53:20 -06:00
|
|
|
|
assert_eq!(a.remove(0), Some(2));
|
2013-12-18 20:56:53 -06:00
|
|
|
|
assert_eq!(a, ~[]);
|
|
|
|
|
|
2013-12-23 09:53:20 -06:00
|
|
|
|
assert_eq!(a.remove(0), None);
|
|
|
|
|
assert_eq!(a.remove(10), None);
|
2012-11-25 07:28:16 -06:00
|
|
|
|
}
|
|
|
|
|
|
2012-03-29 01:10:58 -05:00
|
|
|
|
#[test]
|
|
|
|
|
fn test_capacity() {
|
2012-06-29 18:26:56 -05:00
|
|
|
|
let mut v = ~[0u64];
|
2014-01-31 07:03:20 -06:00
|
|
|
|
v.reserve_exact(10u);
|
2013-06-27 09:40:47 -05:00
|
|
|
|
assert_eq!(v.capacity(), 10u);
|
2012-06-29 18:26:56 -05:00
|
|
|
|
let mut v = ~[0u32];
|
2014-01-31 07:03:20 -06:00
|
|
|
|
v.reserve_exact(10u);
|
2013-06-27 09:40:47 -05:00
|
|
|
|
assert_eq!(v.capacity(), 10u);
|
2012-03-29 01:10:58 -05:00
|
|
|
|
}
|
2012-05-18 18:55:22 -05:00
|
|
|
|
|
|
|
|
|
#[test]
|
2013-03-21 06:36:21 -05:00
|
|
|
|
fn test_slice_2() {
|
2012-06-29 18:26:56 -05:00
|
|
|
|
let v = ~[1, 2, 3, 4, 5];
|
2013-03-21 06:36:21 -05:00
|
|
|
|
let v = v.slice(1u, 3u);
|
2013-05-18 21:02:45 -05:00
|
|
|
|
assert_eq!(v.len(), 2u);
|
|
|
|
|
assert_eq!(v[0], 2);
|
|
|
|
|
assert_eq!(v[1], 3);
|
2012-05-18 18:55:22 -05:00
|
|
|
|
}
|
2012-09-27 18:41:38 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
#[should_fail]
|
|
|
|
|
fn test_from_fn_fail() {
|
2013-11-20 16:17:12 -06:00
|
|
|
|
from_fn(100, |v| {
|
2013-10-21 15:08:31 -05:00
|
|
|
|
if v == 50 { fail!() }
|
2013-12-21 19:50:54 -06:00
|
|
|
|
~0
|
2013-11-20 16:17:12 -06:00
|
|
|
|
});
|
2012-09-27 18:41:38 -05:00
|
|
|
|
}
|
|
|
|
|
|
2013-08-26 20:17:37 -05:00
|
|
|
|
#[test]
|
|
|
|
|
#[should_fail]
|
|
|
|
|
fn test_from_elem_fail() {
|
|
|
|
|
use cast;
|
2013-12-21 19:50:54 -06:00
|
|
|
|
use rc::Rc;
|
2013-08-26 20:17:37 -05:00
|
|
|
|
|
|
|
|
|
struct S {
|
|
|
|
|
f: int,
|
2013-12-21 19:50:54 -06:00
|
|
|
|
boxes: (~int, Rc<int>)
|
2013-08-26 20:17:37 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl Clone for S {
|
|
|
|
|
fn clone(&self) -> S {
|
|
|
|
|
let s = unsafe { cast::transmute_mut(self) };
|
|
|
|
|
s.f += 1;
|
2013-10-21 15:08:31 -05:00
|
|
|
|
if s.f == 10 { fail!() }
|
2013-08-26 20:17:37 -05:00
|
|
|
|
S { f: s.f, boxes: s.boxes.clone() }
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-21 19:50:54 -06:00
|
|
|
|
let s = S { f: 0, boxes: (~0, Rc::new(0)) };
|
2013-08-26 20:17:37 -05:00
|
|
|
|
let _ = from_elem(100, s);
|
|
|
|
|
}
|
|
|
|
|
|
2012-09-27 18:41:38 -05:00
|
|
|
|
#[test]
|
|
|
|
|
#[should_fail]
|
|
|
|
|
fn test_build_fail() {
|
2013-12-21 19:50:54 -06:00
|
|
|
|
use rc::Rc;
|
2013-11-20 16:17:12 -06:00
|
|
|
|
build(None, |push| {
|
2013-12-21 19:50:54 -06:00
|
|
|
|
push((~0, Rc::new(0)));
|
|
|
|
|
push((~0, Rc::new(0)));
|
|
|
|
|
push((~0, Rc::new(0)));
|
|
|
|
|
push((~0, Rc::new(0)));
|
2013-10-21 15:08:31 -05:00
|
|
|
|
fail!();
|
2013-11-20 16:17:12 -06:00
|
|
|
|
});
|
2012-09-27 18:41:38 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
#[should_fail]
|
|
|
|
|
fn test_grow_fn_fail() {
|
2013-12-21 19:50:54 -06:00
|
|
|
|
use rc::Rc;
|
2012-09-27 18:41:38 -05:00
|
|
|
|
let mut v = ~[];
|
2013-11-20 16:17:12 -06:00
|
|
|
|
v.grow_fn(100, |i| {
|
2012-09-27 18:41:38 -05:00
|
|
|
|
if i == 50 {
|
2013-10-21 15:08:31 -05:00
|
|
|
|
fail!()
|
2012-09-27 18:41:38 -05:00
|
|
|
|
}
|
2013-12-21 19:50:54 -06:00
|
|
|
|
(~0, Rc::new(0))
|
2013-11-20 16:17:12 -06:00
|
|
|
|
})
|
2012-09-27 18:41:38 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
#[should_fail]
|
|
|
|
|
fn test_map_fail() {
|
2013-12-21 19:50:54 -06:00
|
|
|
|
use rc::Rc;
|
|
|
|
|
let v = [(~0, Rc::new(0)), (~0, Rc::new(0)), (~0, Rc::new(0)), (~0, Rc::new(0))];
|
2012-09-27 18:41:38 -05:00
|
|
|
|
let mut i = 0;
|
2013-11-20 16:17:12 -06:00
|
|
|
|
v.map(|_elt| {
|
2012-09-27 18:41:38 -05:00
|
|
|
|
if i == 2 {
|
2013-10-21 15:08:31 -05:00
|
|
|
|
fail!()
|
2012-09-27 18:41:38 -05:00
|
|
|
|
}
|
2013-08-22 23:29:50 -05:00
|
|
|
|
i += 1;
|
2013-12-21 19:50:54 -06:00
|
|
|
|
~[(~0, Rc::new(0))]
|
2013-11-20 16:17:12 -06:00
|
|
|
|
});
|
2012-09-27 18:41:38 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
#[should_fail]
|
|
|
|
|
fn test_flat_map_fail() {
|
2013-12-21 19:50:54 -06:00
|
|
|
|
use rc::Rc;
|
|
|
|
|
let v = [(~0, Rc::new(0)), (~0, Rc::new(0)), (~0, Rc::new(0)), (~0, Rc::new(0))];
|
2012-09-27 18:41:38 -05:00
|
|
|
|
let mut i = 0;
|
2013-11-20 16:17:12 -06:00
|
|
|
|
flat_map(v, |_elt| {
|
2012-09-27 18:41:38 -05:00
|
|
|
|
if i == 2 {
|
2013-10-21 15:08:31 -05:00
|
|
|
|
fail!()
|
2012-09-27 18:41:38 -05:00
|
|
|
|
}
|
2013-08-22 23:29:50 -05:00
|
|
|
|
i += 1;
|
2013-12-21 19:50:54 -06:00
|
|
|
|
~[(~0, Rc::new(0))]
|
2013-11-20 16:17:12 -06:00
|
|
|
|
});
|
2012-09-27 18:41:38 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
#[should_fail]
|
|
|
|
|
fn test_permute_fail() {
|
2013-12-21 19:50:54 -06:00
|
|
|
|
use rc::Rc;
|
|
|
|
|
let v = [(~0, Rc::new(0)), (~0, Rc::new(0)), (~0, Rc::new(0)), (~0, Rc::new(0))];
|
2012-09-27 18:41:38 -05:00
|
|
|
|
let mut i = 0;
|
2013-11-23 04:18:51 -06:00
|
|
|
|
for _ in v.permutations() {
|
2012-09-27 18:41:38 -05:00
|
|
|
|
if i == 2 {
|
2013-10-21 15:08:31 -05:00
|
|
|
|
fail!()
|
2012-09-27 18:41:38 -05:00
|
|
|
|
}
|
2013-08-22 23:29:50 -05:00
|
|
|
|
i += 1;
|
std::vec: Replace each_permutation with a new Permutations iterator
Introduce ElementSwaps and Permutations. ElementSwaps is an iterator
that for a given sequence length yields the element swaps needed
to visit each possible permutation of the sequence in turn.
We use an algorithm that generates a sequence such that each permutation
is only one swap apart.
let mut v = [1, 2, 3];
for perm in v.permutations_iter() {
// yields 1 2 3 | 1 3 2 | 3 1 2 | 3 2 1 | 2 3 1 | 2 1 3
}
The `.permutations_iter()` yields clones of the input vector for each
permutation.
If a copyless traversal is needed, it can be constructed with
`ElementSwaps`:
for (a, b) in ElementSwaps::new(3) {
// yields (2, 1), (1, 0), (2, 1) ...
v.swap(a, b);
// ..
}
2013-09-08 18:29:07 -05:00
|
|
|
|
}
|
2012-09-27 18:41:38 -05:00
|
|
|
|
}
|
|
|
|
|
|
2013-01-05 04:52:37 -06:00
|
|
|
|
#[test]
|
|
|
|
|
#[should_fail]
|
2013-01-23 13:43:58 -06:00
|
|
|
|
fn test_copy_memory_oob() {
|
|
|
|
|
unsafe {
|
2013-02-12 17:34:48 -06:00
|
|
|
|
let mut a = [1, 2, 3, 4];
|
2013-01-23 13:43:58 -06:00
|
|
|
|
let b = [1, 2, 3, 4, 5];
|
2013-12-16 06:35:02 -06:00
|
|
|
|
a.copy_memory(b);
|
2013-01-23 13:43:58 -06:00
|
|
|
|
}
|
2013-01-05 04:52:37 -06:00
|
|
|
|
}
|
|
|
|
|
|
2013-03-01 21:07:12 -06:00
|
|
|
|
#[test]
|
|
|
|
|
fn test_total_ord() {
|
|
|
|
|
[1, 2, 3, 4].cmp(& &[1, 2, 3]) == Greater;
|
|
|
|
|
[1, 2, 3].cmp(& &[1, 2, 3, 4]) == Less;
|
|
|
|
|
[1, 2, 3, 4].cmp(& &[1, 2, 3, 4]) == Equal;
|
|
|
|
|
[1, 2, 3, 4, 5, 5, 5, 5].cmp(& &[1, 2, 3, 4, 5, 6]) == Less;
|
|
|
|
|
[2, 2].cmp(& &[1, 2, 3, 4]) == Greater;
|
|
|
|
|
}
|
2013-04-17 18:34:53 -05:00
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_iterator() {
|
2013-09-08 10:01:16 -05:00
|
|
|
|
use iter::*;
|
2013-04-17 18:34:53 -05:00
|
|
|
|
let xs = [1, 2, 5, 10, 11];
|
|
|
|
|
let mut it = xs.iter();
|
2013-07-02 20:40:46 -05:00
|
|
|
|
assert_eq!(it.size_hint(), (5, Some(5)));
|
2013-06-21 05:12:01 -05:00
|
|
|
|
assert_eq!(it.next().unwrap(), &1);
|
2013-07-02 20:40:46 -05:00
|
|
|
|
assert_eq!(it.size_hint(), (4, Some(4)));
|
2013-06-21 05:12:01 -05:00
|
|
|
|
assert_eq!(it.next().unwrap(), &2);
|
2013-07-02 20:40:46 -05:00
|
|
|
|
assert_eq!(it.size_hint(), (3, Some(3)));
|
2013-06-21 05:12:01 -05:00
|
|
|
|
assert_eq!(it.next().unwrap(), &5);
|
2013-07-02 20:40:46 -05:00
|
|
|
|
assert_eq!(it.size_hint(), (2, Some(2)));
|
2013-06-21 05:12:01 -05:00
|
|
|
|
assert_eq!(it.next().unwrap(), &10);
|
2013-07-02 20:40:46 -05:00
|
|
|
|
assert_eq!(it.size_hint(), (1, Some(1)));
|
2013-06-21 05:12:01 -05:00
|
|
|
|
assert_eq!(it.next().unwrap(), &11);
|
2013-07-02 20:40:46 -05:00
|
|
|
|
assert_eq!(it.size_hint(), (0, Some(0)));
|
2013-06-21 05:12:01 -05:00
|
|
|
|
assert!(it.next().is_none());
|
2013-04-17 18:34:53 -05:00
|
|
|
|
}
|
2013-05-11 17:56:08 -05:00
|
|
|
|
|
2013-07-22 19:11:24 -05:00
|
|
|
|
#[test]
|
|
|
|
|
fn test_random_access_iterator() {
|
2013-09-08 10:01:16 -05:00
|
|
|
|
use iter::*;
|
2013-07-22 19:11:24 -05:00
|
|
|
|
let xs = [1, 2, 5, 10, 11];
|
|
|
|
|
let mut it = xs.iter();
|
|
|
|
|
|
|
|
|
|
assert_eq!(it.indexable(), 5);
|
|
|
|
|
assert_eq!(it.idx(0).unwrap(), &1);
|
|
|
|
|
assert_eq!(it.idx(2).unwrap(), &5);
|
|
|
|
|
assert_eq!(it.idx(4).unwrap(), &11);
|
|
|
|
|
assert!(it.idx(5).is_none());
|
|
|
|
|
|
|
|
|
|
assert_eq!(it.next().unwrap(), &1);
|
|
|
|
|
assert_eq!(it.indexable(), 4);
|
|
|
|
|
assert_eq!(it.idx(0).unwrap(), &2);
|
|
|
|
|
assert_eq!(it.idx(3).unwrap(), &11);
|
|
|
|
|
assert!(it.idx(4).is_none());
|
|
|
|
|
|
|
|
|
|
assert_eq!(it.next().unwrap(), &2);
|
|
|
|
|
assert_eq!(it.indexable(), 3);
|
|
|
|
|
assert_eq!(it.idx(1).unwrap(), &10);
|
|
|
|
|
assert!(it.idx(3).is_none());
|
|
|
|
|
|
|
|
|
|
assert_eq!(it.next().unwrap(), &5);
|
|
|
|
|
assert_eq!(it.indexable(), 2);
|
|
|
|
|
assert_eq!(it.idx(1).unwrap(), &11);
|
|
|
|
|
|
|
|
|
|
assert_eq!(it.next().unwrap(), &10);
|
|
|
|
|
assert_eq!(it.indexable(), 1);
|
|
|
|
|
assert_eq!(it.idx(0).unwrap(), &11);
|
|
|
|
|
assert!(it.idx(1).is_none());
|
|
|
|
|
|
|
|
|
|
assert_eq!(it.next().unwrap(), &11);
|
|
|
|
|
assert_eq!(it.indexable(), 0);
|
|
|
|
|
assert!(it.idx(0).is_none());
|
|
|
|
|
|
|
|
|
|
assert!(it.next().is_none());
|
|
|
|
|
}
|
|
|
|
|
|
2013-07-03 07:56:26 -05:00
|
|
|
|
#[test]
|
|
|
|
|
fn test_iter_size_hints() {
|
2013-09-08 10:01:16 -05:00
|
|
|
|
use iter::*;
|
2013-07-03 07:56:26 -05:00
|
|
|
|
let mut xs = [1, 2, 5, 10, 11];
|
2013-07-02 20:40:46 -05:00
|
|
|
|
assert_eq!(xs.iter().size_hint(), (5, Some(5)));
|
|
|
|
|
assert_eq!(xs.rev_iter().size_hint(), (5, Some(5)));
|
|
|
|
|
assert_eq!(xs.mut_iter().size_hint(), (5, Some(5)));
|
|
|
|
|
assert_eq!(xs.mut_rev_iter().size_hint(), (5, Some(5)));
|
2013-07-03 07:56:26 -05:00
|
|
|
|
}
|
|
|
|
|
|
2013-07-18 10:38:17 -05:00
|
|
|
|
#[test]
|
|
|
|
|
fn test_iter_clone() {
|
|
|
|
|
let xs = [1, 2, 5];
|
|
|
|
|
let mut it = xs.iter();
|
|
|
|
|
it.next();
|
|
|
|
|
let mut jt = it.clone();
|
|
|
|
|
assert_eq!(it.next(), jt.next());
|
|
|
|
|
assert_eq!(it.next(), jt.next());
|
|
|
|
|
assert_eq!(it.next(), jt.next());
|
|
|
|
|
}
|
|
|
|
|
|
2013-06-06 00:12:39 -05:00
|
|
|
|
#[test]
|
|
|
|
|
fn test_mut_iterator() {
|
2013-09-08 10:01:16 -05:00
|
|
|
|
use iter::*;
|
2013-06-06 00:12:39 -05:00
|
|
|
|
let mut xs = [1, 2, 3, 4, 5];
|
2013-08-03 11:45:23 -05:00
|
|
|
|
for x in xs.mut_iter() {
|
2013-06-06 00:12:39 -05:00
|
|
|
|
*x += 1;
|
|
|
|
|
}
|
|
|
|
|
assert_eq!(xs, [2, 3, 4, 5, 6])
|
|
|
|
|
}
|
|
|
|
|
|
2013-06-07 21:39:52 -05:00
|
|
|
|
#[test]
|
|
|
|
|
fn test_rev_iterator() {
|
2013-09-08 10:01:16 -05:00
|
|
|
|
use iter::*;
|
2013-06-07 21:39:52 -05:00
|
|
|
|
|
|
|
|
|
let xs = [1, 2, 5, 10, 11];
|
|
|
|
|
let ys = [11, 10, 5, 2, 1];
|
|
|
|
|
let mut i = 0;
|
2013-08-03 11:45:23 -05:00
|
|
|
|
for &x in xs.rev_iter() {
|
2013-06-07 21:39:52 -05:00
|
|
|
|
assert_eq!(x, ys[i]);
|
|
|
|
|
i += 1;
|
|
|
|
|
}
|
|
|
|
|
assert_eq!(i, 5);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_mut_rev_iterator() {
|
2013-09-08 10:01:16 -05:00
|
|
|
|
use iter::*;
|
2013-06-07 23:07:55 -05:00
|
|
|
|
let mut xs = [1u, 2, 3, 4, 5];
|
2013-08-03 11:45:23 -05:00
|
|
|
|
for (i,x) in xs.mut_rev_iter().enumerate() {
|
2013-06-07 21:39:52 -05:00
|
|
|
|
*x += i;
|
|
|
|
|
}
|
|
|
|
|
assert_eq!(xs, [5, 5, 5, 5, 5])
|
|
|
|
|
}
|
|
|
|
|
|
2013-07-01 10:26:44 -05:00
|
|
|
|
#[test]
|
2013-08-07 21:21:36 -05:00
|
|
|
|
fn test_move_iterator() {
|
2013-09-08 10:01:16 -05:00
|
|
|
|
use iter::*;
|
2013-07-01 10:26:44 -05:00
|
|
|
|
let xs = ~[1u,2,3,4,5];
|
2013-08-07 21:21:36 -05:00
|
|
|
|
assert_eq!(xs.move_iter().fold(0, |a: uint, b: uint| 10*a + b), 12345);
|
2013-07-01 10:26:44 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
2013-08-07 21:21:36 -05:00
|
|
|
|
fn test_move_rev_iterator() {
|
2013-09-08 10:01:16 -05:00
|
|
|
|
use iter::*;
|
2013-07-01 10:26:44 -05:00
|
|
|
|
let xs = ~[1u,2,3,4,5];
|
2013-08-07 21:21:36 -05:00
|
|
|
|
assert_eq!(xs.move_rev_iter().fold(0, |a: uint, b: uint| 10*a + b), 54321);
|
2013-07-01 10:26:44 -05:00
|
|
|
|
}
|
|
|
|
|
|
2013-07-02 23:54:11 -05:00
|
|
|
|
#[test]
|
2013-11-23 04:18:51 -06:00
|
|
|
|
fn test_splitator() {
|
2013-07-02 23:54:11 -05:00
|
|
|
|
let xs = &[1i,2,3,4,5];
|
|
|
|
|
|
2013-11-23 04:18:51 -06:00
|
|
|
|
assert_eq!(xs.split(|x| *x % 2 == 0).collect::<~[&[int]]>(),
|
2013-07-02 23:54:11 -05:00
|
|
|
|
~[&[1], &[3], &[5]]);
|
2013-11-23 04:18:51 -06:00
|
|
|
|
assert_eq!(xs.split(|x| *x == 1).collect::<~[&[int]]>(),
|
2013-07-02 23:54:11 -05:00
|
|
|
|
~[&[], &[2,3,4,5]]);
|
2013-11-23 04:18:51 -06:00
|
|
|
|
assert_eq!(xs.split(|x| *x == 5).collect::<~[&[int]]>(),
|
2013-07-02 23:54:11 -05:00
|
|
|
|
~[&[1,2,3,4], &[]]);
|
2013-11-23 04:18:51 -06:00
|
|
|
|
assert_eq!(xs.split(|x| *x == 10).collect::<~[&[int]]>(),
|
2013-07-02 23:54:11 -05:00
|
|
|
|
~[&[1,2,3,4,5]]);
|
2013-11-23 04:18:51 -06:00
|
|
|
|
assert_eq!(xs.split(|_| true).collect::<~[&[int]]>(),
|
2013-07-02 23:54:11 -05:00
|
|
|
|
~[&[], &[], &[], &[], &[], &[]]);
|
|
|
|
|
|
|
|
|
|
let xs: &[int] = &[];
|
2013-11-23 04:18:51 -06:00
|
|
|
|
assert_eq!(xs.split(|x| *x == 5).collect::<~[&[int]]>(), ~[&[]]);
|
2013-07-02 23:54:11 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
2013-11-23 04:18:51 -06:00
|
|
|
|
fn test_splitnator() {
|
2013-07-02 23:54:11 -05:00
|
|
|
|
let xs = &[1i,2,3,4,5];
|
|
|
|
|
|
2013-11-23 04:18:51 -06:00
|
|
|
|
assert_eq!(xs.splitn(0, |x| *x % 2 == 0).collect::<~[&[int]]>(),
|
2013-07-02 23:54:11 -05:00
|
|
|
|
~[&[1,2,3,4,5]]);
|
2013-11-23 04:18:51 -06:00
|
|
|
|
assert_eq!(xs.splitn(1, |x| *x % 2 == 0).collect::<~[&[int]]>(),
|
2013-07-02 23:54:11 -05:00
|
|
|
|
~[&[1], &[3,4,5]]);
|
2013-11-23 04:18:51 -06:00
|
|
|
|
assert_eq!(xs.splitn(3, |_| true).collect::<~[&[int]]>(),
|
2013-07-02 23:54:11 -05:00
|
|
|
|
~[&[], &[], &[], &[4,5]]);
|
|
|
|
|
|
|
|
|
|
let xs: &[int] = &[];
|
2013-11-23 04:18:51 -06:00
|
|
|
|
assert_eq!(xs.splitn(1, |x| *x == 5).collect::<~[&[int]]>(), ~[&[]]);
|
2013-07-02 23:54:11 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
2013-11-23 04:18:51 -06:00
|
|
|
|
fn test_rsplitator() {
|
2013-07-02 23:54:11 -05:00
|
|
|
|
let xs = &[1i,2,3,4,5];
|
|
|
|
|
|
2013-11-23 04:18:51 -06:00
|
|
|
|
assert_eq!(xs.rsplit(|x| *x % 2 == 0).collect::<~[&[int]]>(),
|
2013-07-02 23:54:11 -05:00
|
|
|
|
~[&[5], &[3], &[1]]);
|
2013-11-23 04:18:51 -06:00
|
|
|
|
assert_eq!(xs.rsplit(|x| *x == 1).collect::<~[&[int]]>(),
|
2013-07-02 23:54:11 -05:00
|
|
|
|
~[&[2,3,4,5], &[]]);
|
2013-11-23 04:18:51 -06:00
|
|
|
|
assert_eq!(xs.rsplit(|x| *x == 5).collect::<~[&[int]]>(),
|
2013-07-02 23:54:11 -05:00
|
|
|
|
~[&[], &[1,2,3,4]]);
|
2013-11-23 04:18:51 -06:00
|
|
|
|
assert_eq!(xs.rsplit(|x| *x == 10).collect::<~[&[int]]>(),
|
2013-07-02 23:54:11 -05:00
|
|
|
|
~[&[1,2,3,4,5]]);
|
|
|
|
|
|
|
|
|
|
let xs: &[int] = &[];
|
2013-11-23 04:18:51 -06:00
|
|
|
|
assert_eq!(xs.rsplit(|x| *x == 5).collect::<~[&[int]]>(), ~[&[]]);
|
2013-07-02 23:54:11 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
2013-11-23 04:18:51 -06:00
|
|
|
|
fn test_rsplitnator() {
|
2013-07-02 23:54:11 -05:00
|
|
|
|
let xs = &[1,2,3,4,5];
|
|
|
|
|
|
2013-11-23 04:18:51 -06:00
|
|
|
|
assert_eq!(xs.rsplitn(0, |x| *x % 2 == 0).collect::<~[&[int]]>(),
|
2013-07-02 23:54:11 -05:00
|
|
|
|
~[&[1,2,3,4,5]]);
|
2013-11-23 04:18:51 -06:00
|
|
|
|
assert_eq!(xs.rsplitn(1, |x| *x % 2 == 0).collect::<~[&[int]]>(),
|
2013-07-02 23:54:11 -05:00
|
|
|
|
~[&[5], &[1,2,3]]);
|
2013-11-23 04:18:51 -06:00
|
|
|
|
assert_eq!(xs.rsplitn(3, |_| true).collect::<~[&[int]]>(),
|
2013-07-02 23:54:11 -05:00
|
|
|
|
~[&[], &[], &[], &[1,2]]);
|
|
|
|
|
|
|
|
|
|
let xs: &[int] = &[];
|
2013-11-23 04:18:51 -06:00
|
|
|
|
assert_eq!(xs.rsplitn(1, |x| *x == 5).collect::<~[&[int]]>(), ~[&[]]);
|
2013-07-02 23:54:11 -05:00
|
|
|
|
}
|
|
|
|
|
|
2013-07-03 00:47:58 -05:00
|
|
|
|
#[test]
|
2013-11-23 04:18:51 -06:00
|
|
|
|
fn test_windowsator() {
|
2013-07-03 00:47:58 -05:00
|
|
|
|
let v = &[1i,2,3,4];
|
|
|
|
|
|
2013-11-23 04:18:51 -06:00
|
|
|
|
assert_eq!(v.windows(2).collect::<~[&[int]]>(), ~[&[1,2], &[2,3], &[3,4]]);
|
|
|
|
|
assert_eq!(v.windows(3).collect::<~[&[int]]>(), ~[&[1i,2,3], &[2,3,4]]);
|
|
|
|
|
assert!(v.windows(6).next().is_none());
|
2013-07-03 00:47:58 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
#[should_fail]
|
2013-11-23 04:18:51 -06:00
|
|
|
|
fn test_windowsator_0() {
|
2013-07-03 00:47:58 -05:00
|
|
|
|
let v = &[1i,2,3,4];
|
2013-11-23 04:18:51 -06:00
|
|
|
|
let _it = v.windows(0);
|
2013-07-03 00:47:58 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
2013-11-23 04:18:51 -06:00
|
|
|
|
fn test_chunksator() {
|
2013-07-03 00:47:58 -05:00
|
|
|
|
let v = &[1i,2,3,4,5];
|
|
|
|
|
|
2013-11-23 04:18:51 -06:00
|
|
|
|
assert_eq!(v.chunks(2).collect::<~[&[int]]>(), ~[&[1i,2], &[3,4], &[5]]);
|
|
|
|
|
assert_eq!(v.chunks(3).collect::<~[&[int]]>(), ~[&[1i,2,3], &[4,5]]);
|
|
|
|
|
assert_eq!(v.chunks(6).collect::<~[&[int]]>(), ~[&[1i,2,3,4,5]]);
|
2013-08-03 12:40:20 -05:00
|
|
|
|
|
2014-01-23 13:41:57 -06:00
|
|
|
|
assert_eq!(v.chunks(2).rev().collect::<~[&[int]]>(), ~[&[5i], &[3,4], &[1,2]]);
|
2013-11-23 04:18:51 -06:00
|
|
|
|
let it = v.chunks(2);
|
2013-08-03 12:40:20 -05:00
|
|
|
|
assert_eq!(it.indexable(), 3);
|
|
|
|
|
assert_eq!(it.idx(0).unwrap(), &[1,2]);
|
|
|
|
|
assert_eq!(it.idx(1).unwrap(), &[3,4]);
|
|
|
|
|
assert_eq!(it.idx(2).unwrap(), &[5]);
|
|
|
|
|
assert_eq!(it.idx(3), None);
|
2013-07-03 00:47:58 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
#[should_fail]
|
2013-11-23 04:18:51 -06:00
|
|
|
|
fn test_chunksator_0() {
|
2013-07-03 00:47:58 -05:00
|
|
|
|
let v = &[1i,2,3,4];
|
2013-11-23 04:18:51 -06:00
|
|
|
|
let _it = v.chunks(0);
|
2013-07-03 00:47:58 -05:00
|
|
|
|
}
|
|
|
|
|
|
2013-06-18 01:52:14 -05:00
|
|
|
|
#[test]
|
|
|
|
|
fn test_move_from() {
|
|
|
|
|
let mut a = [1,2,3,4,5];
|
|
|
|
|
let b = ~[6,7,8];
|
|
|
|
|
assert_eq!(a.move_from(b, 0, 3), 3);
|
|
|
|
|
assert_eq!(a, [6,7,8,4,5]);
|
|
|
|
|
let mut a = [7,2,8,1];
|
|
|
|
|
let b = ~[3,1,4,1,5,9];
|
|
|
|
|
assert_eq!(a.move_from(b, 0, 6), 4);
|
|
|
|
|
assert_eq!(a, [3,1,4,1]);
|
|
|
|
|
let mut a = [1,2,3,4];
|
|
|
|
|
let b = ~[5,6,7,8,9,0];
|
|
|
|
|
assert_eq!(a.move_from(b, 2, 3), 1);
|
|
|
|
|
assert_eq!(a, [7,2,3,4]);
|
|
|
|
|
let mut a = [1,2,3,4,5];
|
|
|
|
|
let b = ~[5,6,7,8,9,0];
|
|
|
|
|
assert_eq!(a.mut_slice(2,4).move_from(b,1,6), 2);
|
|
|
|
|
assert_eq!(a, [1,2,6,7,5]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_copy_from() {
|
|
|
|
|
let mut a = [1,2,3,4,5];
|
|
|
|
|
let b = [6,7,8];
|
|
|
|
|
assert_eq!(a.copy_from(b), 3);
|
|
|
|
|
assert_eq!(a, [6,7,8,4,5]);
|
|
|
|
|
let mut c = [7,2,8,1];
|
|
|
|
|
let d = [3,1,4,1,5,9];
|
|
|
|
|
assert_eq!(c.copy_from(d), 4);
|
|
|
|
|
assert_eq!(c, [3,1,4,1]);
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-13 17:52:58 -06:00
|
|
|
|
#[test]
|
|
|
|
|
fn test_reverse_part() {
|
|
|
|
|
let mut values = [1,2,3,4,5];
|
2013-06-28 11:54:03 -05:00
|
|
|
|
values.mut_slice(1, 4).reverse();
|
2013-05-15 19:35:43 -05:00
|
|
|
|
assert_eq!(values, [1,4,3,2,5]);
|
2013-02-13 17:52:58 -06:00
|
|
|
|
}
|
|
|
|
|
|
2014-02-12 13:41:34 -06:00
|
|
|
|
#[test]
|
|
|
|
|
fn test_show() {
|
|
|
|
|
macro_rules! test_show_vec(
|
|
|
|
|
($x:expr, $x_str:expr) => ({
|
|
|
|
|
let (x, x_str) = ($x, $x_str);
|
|
|
|
|
assert_eq!(format!("{}", x), x_str);
|
|
|
|
|
assert_eq!(format!("{}", x.as_slice()), x_str);
|
|
|
|
|
})
|
|
|
|
|
)
|
|
|
|
|
let empty: ~[int] = ~[];
|
|
|
|
|
test_show_vec!(empty, ~"[]");
|
|
|
|
|
test_show_vec!(~[1], ~"[1]");
|
|
|
|
|
test_show_vec!(~[1, 2, 3], ~"[1, 2, 3]");
|
|
|
|
|
test_show_vec!(~[~[], ~[1u], ~[1u, 1u]], ~"[[], [1], [1, 1]]");
|
|
|
|
|
}
|
|
|
|
|
|
2013-06-17 02:05:51 -05:00
|
|
|
|
#[test]
|
2013-09-12 00:16:22 -05:00
|
|
|
|
fn test_vec_default() {
|
|
|
|
|
use default::Default;
|
2013-06-17 02:05:51 -05:00
|
|
|
|
macro_rules! t (
|
2013-06-27 10:45:24 -05:00
|
|
|
|
($ty:ty) => {{
|
2013-09-12 00:16:22 -05:00
|
|
|
|
let v: $ty = Default::default();
|
2013-06-17 02:05:51 -05:00
|
|
|
|
assert!(v.is_empty());
|
2013-06-27 10:45:24 -05:00
|
|
|
|
}}
|
2013-06-17 02:05:51 -05:00
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
t!(&[int]);
|
|
|
|
|
t!(~[int]);
|
|
|
|
|
}
|
2013-06-18 01:20:53 -05:00
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_bytes_set_memory() {
|
|
|
|
|
use vec::bytes::MutableByteVector;
|
|
|
|
|
let mut values = [1u8,2,3,4,5];
|
|
|
|
|
values.mut_slice(0,5).set_memory(0xAB);
|
|
|
|
|
assert_eq!(values, [0xAB, 0xAB, 0xAB, 0xAB, 0xAB]);
|
|
|
|
|
values.mut_slice(2,4).set_memory(0xFF);
|
|
|
|
|
assert_eq!(values, [0xAB, 0xAB, 0xFF, 0xFF, 0xAB]);
|
|
|
|
|
}
|
2013-07-03 22:59:34 -05:00
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
#[should_fail]
|
|
|
|
|
fn test_overflow_does_not_cause_segfault() {
|
|
|
|
|
let mut v = ~[];
|
2014-01-31 07:03:20 -06:00
|
|
|
|
v.reserve_exact(-1);
|
2013-07-03 22:59:34 -05:00
|
|
|
|
v.push(1);
|
|
|
|
|
v.push(2);
|
|
|
|
|
}
|
2013-07-10 08:50:24 -05:00
|
|
|
|
|
2013-09-11 22:00:25 -05:00
|
|
|
|
#[test]
|
|
|
|
|
#[should_fail]
|
|
|
|
|
fn test_overflow_does_not_cause_segfault_managed() {
|
2013-12-21 19:50:54 -06:00
|
|
|
|
use rc::Rc;
|
|
|
|
|
let mut v = ~[Rc::new(1)];
|
2014-01-31 07:03:20 -06:00
|
|
|
|
v.reserve_exact(-1);
|
2013-12-21 19:50:54 -06:00
|
|
|
|
v.push(Rc::new(2));
|
2013-09-11 22:00:25 -05:00
|
|
|
|
}
|
|
|
|
|
|
2013-07-10 08:50:24 -05:00
|
|
|
|
#[test]
|
2013-12-01 11:19:39 -06:00
|
|
|
|
fn test_mut_split_at() {
|
2013-07-10 08:50:24 -05:00
|
|
|
|
let mut values = [1u8,2,3,4,5];
|
|
|
|
|
{
|
2013-12-01 11:19:39 -06:00
|
|
|
|
let (left, right) = values.mut_split_at(2);
|
2013-07-10 08:50:24 -05:00
|
|
|
|
assert_eq!(left.slice(0, left.len()), [1, 2]);
|
2013-08-03 11:45:23 -05:00
|
|
|
|
for p in left.mut_iter() {
|
2013-07-10 08:50:24 -05:00
|
|
|
|
*p += 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
assert_eq!(right.slice(0, right.len()), [3, 4, 5]);
|
2013-08-03 11:45:23 -05:00
|
|
|
|
for p in right.mut_iter() {
|
2013-07-10 08:50:24 -05:00
|
|
|
|
*p += 2;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
assert_eq!(values, [2, 3, 5, 6, 7]);
|
|
|
|
|
}
|
2013-07-12 02:59:39 -05:00
|
|
|
|
|
2013-07-12 23:05:59 -05:00
|
|
|
|
#[deriving(Clone, Eq)]
|
2013-07-12 02:59:39 -05:00
|
|
|
|
struct Foo;
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_iter_zero_sized() {
|
|
|
|
|
let mut v = ~[Foo, Foo, Foo];
|
|
|
|
|
assert_eq!(v.len(), 3);
|
|
|
|
|
let mut cnt = 0;
|
|
|
|
|
|
2013-08-03 11:45:23 -05:00
|
|
|
|
for f in v.iter() {
|
2013-07-12 02:59:39 -05:00
|
|
|
|
assert!(*f == Foo);
|
|
|
|
|
cnt += 1;
|
|
|
|
|
}
|
|
|
|
|
assert_eq!(cnt, 3);
|
|
|
|
|
|
2013-08-03 11:45:23 -05:00
|
|
|
|
for f in v.slice(1, 3).iter() {
|
2013-07-12 02:59:39 -05:00
|
|
|
|
assert!(*f == Foo);
|
|
|
|
|
cnt += 1;
|
|
|
|
|
}
|
|
|
|
|
assert_eq!(cnt, 5);
|
|
|
|
|
|
2013-08-03 11:45:23 -05:00
|
|
|
|
for f in v.mut_iter() {
|
2013-07-12 02:59:39 -05:00
|
|
|
|
assert!(*f == Foo);
|
|
|
|
|
cnt += 1;
|
|
|
|
|
}
|
|
|
|
|
assert_eq!(cnt, 8);
|
|
|
|
|
|
2013-08-07 21:21:36 -05:00
|
|
|
|
for f in v.move_iter() {
|
2013-07-12 02:59:39 -05:00
|
|
|
|
assert!(f == Foo);
|
|
|
|
|
cnt += 1;
|
|
|
|
|
}
|
|
|
|
|
assert_eq!(cnt, 11);
|
|
|
|
|
|
|
|
|
|
let xs = ~[Foo, Foo, Foo];
|
2013-09-27 19:02:31 -05:00
|
|
|
|
assert_eq!(format!("{:?}", xs.slice(0, 2).to_owned()),
|
2013-08-31 00:28:59 -05:00
|
|
|
|
~"~[vec::tests::Foo, vec::tests::Foo]");
|
2013-07-12 02:59:39 -05:00
|
|
|
|
|
|
|
|
|
let xs: [Foo, ..3] = [Foo, Foo, Foo];
|
2013-09-27 19:02:31 -05:00
|
|
|
|
assert_eq!(format!("{:?}", xs.slice(0, 2).to_owned()),
|
2013-08-31 00:28:59 -05:00
|
|
|
|
~"~[vec::tests::Foo, vec::tests::Foo]");
|
2013-07-12 02:59:39 -05:00
|
|
|
|
cnt = 0;
|
2013-08-03 11:45:23 -05:00
|
|
|
|
for f in xs.iter() {
|
2013-07-12 02:59:39 -05:00
|
|
|
|
assert!(*f == Foo);
|
|
|
|
|
cnt += 1;
|
|
|
|
|
}
|
|
|
|
|
assert!(cnt == 3);
|
|
|
|
|
}
|
2013-08-19 13:17:10 -05:00
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_shrink_to_fit() {
|
|
|
|
|
let mut xs = ~[0, 1, 2, 3];
|
|
|
|
|
for i in range(4, 100) {
|
|
|
|
|
xs.push(i)
|
|
|
|
|
}
|
|
|
|
|
assert_eq!(xs.capacity(), 128);
|
|
|
|
|
xs.shrink_to_fit();
|
|
|
|
|
assert_eq!(xs.capacity(), 100);
|
|
|
|
|
assert_eq!(xs, range(0, 100).to_owned_vec());
|
|
|
|
|
}
|
2013-10-17 00:01:20 -05:00
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_starts_with() {
|
|
|
|
|
assert!(bytes!("foobar").starts_with(bytes!("foo")));
|
|
|
|
|
assert!(!bytes!("foobar").starts_with(bytes!("oob")));
|
|
|
|
|
assert!(!bytes!("foobar").starts_with(bytes!("bar")));
|
|
|
|
|
assert!(!bytes!("foo").starts_with(bytes!("foobar")));
|
|
|
|
|
assert!(!bytes!("bar").starts_with(bytes!("foobar")));
|
|
|
|
|
assert!(bytes!("foobar").starts_with(bytes!("foobar")));
|
|
|
|
|
let empty: &[u8] = [];
|
|
|
|
|
assert!(empty.starts_with(empty));
|
|
|
|
|
assert!(!empty.starts_with(bytes!("foo")));
|
|
|
|
|
assert!(bytes!("foobar").starts_with(empty));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_ends_with() {
|
|
|
|
|
assert!(bytes!("foobar").ends_with(bytes!("bar")));
|
|
|
|
|
assert!(!bytes!("foobar").ends_with(bytes!("oba")));
|
|
|
|
|
assert!(!bytes!("foobar").ends_with(bytes!("foo")));
|
|
|
|
|
assert!(!bytes!("foo").ends_with(bytes!("foobar")));
|
|
|
|
|
assert!(!bytes!("bar").ends_with(bytes!("foobar")));
|
|
|
|
|
assert!(bytes!("foobar").ends_with(bytes!("foobar")));
|
|
|
|
|
let empty: &[u8] = [];
|
|
|
|
|
assert!(empty.ends_with(empty));
|
|
|
|
|
assert!(!empty.ends_with(bytes!("foo")));
|
|
|
|
|
assert!(bytes!("foobar").ends_with(empty));
|
|
|
|
|
}
|
2013-11-16 16:29:19 -06:00
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_shift_ref() {
|
|
|
|
|
let mut x: &[int] = [1, 2, 3, 4, 5];
|
|
|
|
|
let h = x.shift_ref();
|
2014-01-25 11:00:46 -06:00
|
|
|
|
assert_eq!(*h.unwrap(), 1);
|
2013-11-16 16:29:19 -06:00
|
|
|
|
assert_eq!(x.len(), 4);
|
|
|
|
|
assert_eq!(x[0], 2);
|
|
|
|
|
assert_eq!(x[3], 5);
|
|
|
|
|
|
2014-01-25 11:00:46 -06:00
|
|
|
|
let mut y: &[int] = [];
|
|
|
|
|
assert_eq!(y.shift_ref(), None);
|
2013-11-16 16:29:19 -06:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_pop_ref() {
|
|
|
|
|
let mut x: &[int] = [1, 2, 3, 4, 5];
|
|
|
|
|
let h = x.pop_ref();
|
2014-01-25 14:33:31 -06:00
|
|
|
|
assert_eq!(*h.unwrap(), 5);
|
2013-11-16 16:29:19 -06:00
|
|
|
|
assert_eq!(x.len(), 4);
|
|
|
|
|
assert_eq!(x[0], 1);
|
|
|
|
|
assert_eq!(x[3], 4);
|
|
|
|
|
|
2014-01-25 14:33:31 -06:00
|
|
|
|
let mut y: &[int] = [];
|
|
|
|
|
assert!(y.pop_ref().is_none());
|
2013-11-16 16:29:19 -06:00
|
|
|
|
}
|
|
|
|
|
|
2013-12-01 11:50:34 -06:00
|
|
|
|
#[test]
|
|
|
|
|
fn test_mut_splitator() {
|
|
|
|
|
let mut xs = [0,1,0,2,3,0,0,4,5,0];
|
|
|
|
|
assert_eq!(xs.mut_split(|x| *x == 0).len(), 6);
|
|
|
|
|
for slice in xs.mut_split(|x| *x == 0) {
|
|
|
|
|
slice.reverse();
|
|
|
|
|
}
|
|
|
|
|
assert_eq!(xs, [0,1,0,3,2,0,0,5,4,0]);
|
|
|
|
|
|
|
|
|
|
let mut xs = [0,1,0,2,3,0,0,4,5,0,6,7];
|
|
|
|
|
for slice in xs.mut_split(|x| *x == 0).take(5) {
|
|
|
|
|
slice.reverse();
|
|
|
|
|
}
|
|
|
|
|
assert_eq!(xs, [0,1,0,3,2,0,0,5,4,0,6,7]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
2014-01-23 13:41:57 -06:00
|
|
|
|
fn test_mut_splitator_rev() {
|
2013-12-01 11:50:34 -06:00
|
|
|
|
let mut xs = [1,2,0,3,4,0,0,5,6,0];
|
2014-01-23 13:41:57 -06:00
|
|
|
|
for slice in xs.mut_split(|x| *x == 0).rev().take(4) {
|
2013-12-01 11:50:34 -06:00
|
|
|
|
slice.reverse();
|
|
|
|
|
}
|
|
|
|
|
assert_eq!(xs, [1,2,0,4,3,0,0,6,5,0]);
|
|
|
|
|
}
|
|
|
|
|
|
2013-11-30 15:28:42 -06:00
|
|
|
|
#[test]
|
|
|
|
|
fn test_mut_chunks() {
|
|
|
|
|
let mut v = [0u8, 1, 2, 3, 4, 5, 6];
|
|
|
|
|
for (i, chunk) in v.mut_chunks(3).enumerate() {
|
|
|
|
|
for x in chunk.mut_iter() {
|
|
|
|
|
*x = i as u8;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
let result = [0u8, 0, 0, 1, 1, 1, 2];
|
|
|
|
|
assert_eq!(v, result);
|
|
|
|
|
}
|
|
|
|
|
|
2013-11-30 18:54:28 -06:00
|
|
|
|
#[test]
|
2014-01-23 13:41:57 -06:00
|
|
|
|
fn test_mut_chunks_rev() {
|
2013-11-30 18:54:28 -06:00
|
|
|
|
let mut v = [0u8, 1, 2, 3, 4, 5, 6];
|
2014-01-23 13:41:57 -06:00
|
|
|
|
for (i, chunk) in v.mut_chunks(3).rev().enumerate() {
|
2013-11-30 18:54:28 -06:00
|
|
|
|
for x in chunk.mut_iter() {
|
|
|
|
|
*x = i as u8;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
let result = [2u8, 2, 2, 1, 1, 1, 0];
|
|
|
|
|
assert_eq!(v, result);
|
|
|
|
|
}
|
|
|
|
|
|
2013-11-30 15:28:42 -06:00
|
|
|
|
#[test]
|
|
|
|
|
#[should_fail]
|
|
|
|
|
fn test_mut_chunks_0() {
|
|
|
|
|
let mut v = [1, 2, 3, 4];
|
|
|
|
|
let _it = v.mut_chunks(0);
|
|
|
|
|
}
|
2013-11-16 16:29:19 -06:00
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_mut_shift_ref() {
|
|
|
|
|
let mut x: &mut [int] = [1, 2, 3, 4, 5];
|
|
|
|
|
let h = x.mut_shift_ref();
|
2014-01-25 11:00:46 -06:00
|
|
|
|
assert_eq!(*h.unwrap(), 1);
|
2013-11-16 16:29:19 -06:00
|
|
|
|
assert_eq!(x.len(), 4);
|
|
|
|
|
assert_eq!(x[0], 2);
|
|
|
|
|
assert_eq!(x[3], 5);
|
|
|
|
|
|
2014-01-25 11:00:46 -06:00
|
|
|
|
let mut y: &mut [int] = [];
|
|
|
|
|
assert!(y.mut_shift_ref().is_none());
|
2013-11-16 16:29:19 -06:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_mut_pop_ref() {
|
|
|
|
|
let mut x: &mut [int] = [1, 2, 3, 4, 5];
|
|
|
|
|
let h = x.mut_pop_ref();
|
2014-01-25 14:33:31 -06:00
|
|
|
|
assert_eq!(*h.unwrap(), 5);
|
2013-11-16 16:29:19 -06:00
|
|
|
|
assert_eq!(x.len(), 4);
|
|
|
|
|
assert_eq!(x[0], 1);
|
|
|
|
|
assert_eq!(x[3], 4);
|
|
|
|
|
|
2014-01-25 14:33:31 -06:00
|
|
|
|
let mut y: &mut [int] = [];
|
|
|
|
|
assert!(y.mut_pop_ref().is_none());
|
2013-11-16 16:29:19 -06:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
2014-01-26 10:24:34 -06:00
|
|
|
|
fn test_mut_last() {
|
|
|
|
|
let mut x = [1, 2, 3, 4, 5];
|
|
|
|
|
let h = x.mut_last();
|
|
|
|
|
assert_eq!(*h.unwrap(), 5);
|
|
|
|
|
|
2014-01-22 21:32:16 -06:00
|
|
|
|
let y: &mut [int] = [];
|
2014-01-26 10:24:34 -06:00
|
|
|
|
assert!(y.mut_last().is_none());
|
2013-11-16 16:29:19 -06:00
|
|
|
|
}
|
2013-04-18 07:15:40 -05:00
|
|
|
|
}
|
2013-08-02 08:34:11 -05:00
|
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
|
mod bench {
|
2014-02-13 19:49:11 -06:00
|
|
|
|
extern crate test;
|
|
|
|
|
use self::test::BenchHarness;
|
2014-01-07 00:33:37 -06:00
|
|
|
|
use mem;
|
|
|
|
|
use prelude::*;
|
2013-12-11 23:05:26 -06:00
|
|
|
|
use ptr;
|
2013-12-18 20:23:37 -06:00
|
|
|
|
use rand::{weak_rng, Rng};
|
2014-01-07 00:33:37 -06:00
|
|
|
|
use vec;
|
2013-08-02 08:34:11 -05:00
|
|
|
|
|
|
|
|
|
#[bench]
|
|
|
|
|
fn iterator(bh: &mut BenchHarness) {
|
|
|
|
|
// peculiar numbers to stop LLVM from optimising the summation
|
|
|
|
|
// out.
|
|
|
|
|
let v = vec::from_fn(100, |i| i ^ (i << 1) ^ (i >> 1));
|
|
|
|
|
|
2013-11-20 16:17:12 -06:00
|
|
|
|
bh.iter(|| {
|
2013-08-02 08:34:11 -05:00
|
|
|
|
let mut sum = 0;
|
2013-08-03 11:45:23 -05:00
|
|
|
|
for x in v.iter() {
|
2013-08-02 08:34:11 -05:00
|
|
|
|
sum += *x;
|
|
|
|
|
}
|
|
|
|
|
// sum == 11806, to stop dead code elimination.
|
2013-10-21 15:08:31 -05:00
|
|
|
|
if sum == 0 {fail!()}
|
2013-11-20 16:17:12 -06:00
|
|
|
|
})
|
2013-08-02 08:34:11 -05:00
|
|
|
|
}
|
2013-08-02 09:23:05 -05:00
|
|
|
|
|
|
|
|
|
#[bench]
|
|
|
|
|
fn mut_iterator(bh: &mut BenchHarness) {
|
|
|
|
|
let mut v = vec::from_elem(100, 0);
|
|
|
|
|
|
2013-11-20 16:17:12 -06:00
|
|
|
|
bh.iter(|| {
|
2013-08-02 09:23:05 -05:00
|
|
|
|
let mut i = 0;
|
2013-08-03 11:45:23 -05:00
|
|
|
|
for x in v.mut_iter() {
|
2013-08-02 09:23:05 -05:00
|
|
|
|
*x = i;
|
|
|
|
|
i += 1;
|
|
|
|
|
}
|
2013-11-20 16:17:12 -06:00
|
|
|
|
})
|
2013-08-02 09:23:05 -05:00
|
|
|
|
}
|
2013-08-08 22:49:49 -05:00
|
|
|
|
|
|
|
|
|
#[bench]
|
2013-11-20 15:19:48 -06:00
|
|
|
|
fn add(bh: &mut BenchHarness) {
|
2013-08-08 22:49:49 -05:00
|
|
|
|
let xs: &[int] = [5, ..10];
|
|
|
|
|
let ys: &[int] = [5, ..10];
|
2013-11-20 16:17:12 -06:00
|
|
|
|
bh.iter(|| {
|
2013-08-08 22:49:49 -05:00
|
|
|
|
xs + ys;
|
2013-11-20 16:17:12 -06:00
|
|
|
|
});
|
2013-08-08 22:49:49 -05:00
|
|
|
|
}
|
2013-09-27 21:53:20 -05:00
|
|
|
|
|
|
|
|
|
#[bench]
|
|
|
|
|
fn concat(bh: &mut BenchHarness) {
|
|
|
|
|
let xss: &[~[uint]] = vec::from_fn(100, |i| range(0, i).collect());
|
2013-11-21 19:23:21 -06:00
|
|
|
|
bh.iter(|| {
|
|
|
|
|
let _ = xss.concat_vec();
|
|
|
|
|
});
|
2013-09-27 21:53:20 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[bench]
|
|
|
|
|
fn connect(bh: &mut BenchHarness) {
|
|
|
|
|
let xss: &[~[uint]] = vec::from_fn(100, |i| range(0, i).collect());
|
2013-11-21 19:23:21 -06:00
|
|
|
|
bh.iter(|| {
|
|
|
|
|
let _ = xss.connect_vec(&0);
|
|
|
|
|
});
|
2013-09-27 21:53:20 -05:00
|
|
|
|
}
|
2013-11-20 15:19:48 -06:00
|
|
|
|
|
|
|
|
|
#[bench]
|
|
|
|
|
fn push(bh: &mut BenchHarness) {
|
|
|
|
|
let mut vec: ~[uint] = ~[0u];
|
2013-11-22 16:15:32 -06:00
|
|
|
|
bh.iter(|| {
|
2013-11-20 15:19:48 -06:00
|
|
|
|
vec.push(0);
|
2014-02-12 09:39:21 -06:00
|
|
|
|
&vec
|
2013-11-22 16:15:32 -06:00
|
|
|
|
})
|
2013-11-20 15:19:48 -06:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[bench]
|
|
|
|
|
fn starts_with_same_vector(bh: &mut BenchHarness) {
|
|
|
|
|
let vec: ~[uint] = vec::from_fn(100, |i| i);
|
2013-11-22 16:15:32 -06:00
|
|
|
|
bh.iter(|| {
|
2014-02-12 09:39:21 -06:00
|
|
|
|
vec.starts_with(vec)
|
2013-11-22 16:15:32 -06:00
|
|
|
|
})
|
2013-11-20 15:19:48 -06:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[bench]
|
|
|
|
|
fn starts_with_single_element(bh: &mut BenchHarness) {
|
|
|
|
|
let vec: ~[uint] = ~[0u];
|
2013-11-22 16:15:32 -06:00
|
|
|
|
bh.iter(|| {
|
2014-02-12 09:39:21 -06:00
|
|
|
|
vec.starts_with(vec)
|
2013-11-22 16:15:32 -06:00
|
|
|
|
})
|
2013-11-20 15:19:48 -06:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[bench]
|
|
|
|
|
fn starts_with_diff_one_element_at_end(bh: &mut BenchHarness) {
|
|
|
|
|
let vec: ~[uint] = vec::from_fn(100, |i| i);
|
|
|
|
|
let mut match_vec: ~[uint] = vec::from_fn(99, |i| i);
|
|
|
|
|
match_vec.push(0);
|
2013-11-22 16:15:32 -06:00
|
|
|
|
bh.iter(|| {
|
2014-02-12 09:39:21 -06:00
|
|
|
|
vec.starts_with(match_vec)
|
2013-11-22 16:15:32 -06:00
|
|
|
|
})
|
2013-11-20 15:19:48 -06:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[bench]
|
|
|
|
|
fn ends_with_same_vector(bh: &mut BenchHarness) {
|
|
|
|
|
let vec: ~[uint] = vec::from_fn(100, |i| i);
|
2013-11-22 16:15:32 -06:00
|
|
|
|
bh.iter(|| {
|
2014-02-12 09:39:21 -06:00
|
|
|
|
vec.ends_with(vec)
|
2013-11-22 16:15:32 -06:00
|
|
|
|
})
|
2013-11-20 15:19:48 -06:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[bench]
|
|
|
|
|
fn ends_with_single_element(bh: &mut BenchHarness) {
|
|
|
|
|
let vec: ~[uint] = ~[0u];
|
2013-11-22 16:15:32 -06:00
|
|
|
|
bh.iter(|| {
|
2014-02-12 09:39:21 -06:00
|
|
|
|
vec.ends_with(vec)
|
2013-11-22 16:15:32 -06:00
|
|
|
|
})
|
2013-11-20 15:19:48 -06:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[bench]
|
|
|
|
|
fn ends_with_diff_one_element_at_beginning(bh: &mut BenchHarness) {
|
|
|
|
|
let vec: ~[uint] = vec::from_fn(100, |i| i);
|
|
|
|
|
let mut match_vec: ~[uint] = vec::from_fn(100, |i| i);
|
|
|
|
|
match_vec[0] = 200;
|
2013-11-22 16:15:32 -06:00
|
|
|
|
bh.iter(|| {
|
2014-02-12 09:39:21 -06:00
|
|
|
|
vec.starts_with(match_vec)
|
2013-11-22 16:15:32 -06:00
|
|
|
|
})
|
2013-11-20 15:19:48 -06:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[bench]
|
|
|
|
|
fn contains_last_element(bh: &mut BenchHarness) {
|
|
|
|
|
let vec: ~[uint] = vec::from_fn(100, |i| i);
|
2013-11-22 16:15:32 -06:00
|
|
|
|
bh.iter(|| {
|
2014-02-12 09:39:21 -06:00
|
|
|
|
vec.contains(&99u)
|
2013-11-22 16:15:32 -06:00
|
|
|
|
})
|
2013-11-20 15:19:48 -06:00
|
|
|
|
}
|
2013-12-11 23:05:26 -06:00
|
|
|
|
|
|
|
|
|
#[bench]
|
|
|
|
|
fn zero_1kb_from_elem(bh: &mut BenchHarness) {
|
|
|
|
|
bh.iter(|| {
|
|
|
|
|
let _v: ~[u8] = vec::from_elem(1024, 0u8);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[bench]
|
|
|
|
|
fn zero_1kb_set_memory(bh: &mut BenchHarness) {
|
|
|
|
|
bh.iter(|| {
|
|
|
|
|
let mut v: ~[u8] = vec::with_capacity(1024);
|
|
|
|
|
unsafe {
|
2013-12-15 06:35:12 -06:00
|
|
|
|
let vp = v.as_mut_ptr();
|
2013-12-11 23:05:26 -06:00
|
|
|
|
ptr::set_memory(vp, 0, 1024);
|
2013-12-15 06:05:30 -06:00
|
|
|
|
v.set_len(1024);
|
2013-12-11 23:05:26 -06:00
|
|
|
|
}
|
2014-02-12 09:39:21 -06:00
|
|
|
|
v
|
2013-12-11 23:05:26 -06:00
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[bench]
|
|
|
|
|
fn zero_1kb_fixed_repeat(bh: &mut BenchHarness) {
|
|
|
|
|
bh.iter(|| {
|
2014-02-12 09:39:21 -06:00
|
|
|
|
~[0u8, ..1024]
|
2013-12-11 23:05:26 -06:00
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[bench]
|
|
|
|
|
fn zero_1kb_loop_set(bh: &mut BenchHarness) {
|
|
|
|
|
// Slower because the { len, cap, [0 x T] }* repr allows a pointer to the length
|
|
|
|
|
// field to be aliased (in theory) and prevents LLVM from optimizing loads away.
|
|
|
|
|
bh.iter(|| {
|
|
|
|
|
let mut v: ~[u8] = vec::with_capacity(1024);
|
|
|
|
|
unsafe {
|
2013-12-15 06:05:30 -06:00
|
|
|
|
v.set_len(1024);
|
2013-12-11 23:05:26 -06:00
|
|
|
|
}
|
|
|
|
|
for i in range(0, 1024) {
|
|
|
|
|
v[i] = 0;
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[bench]
|
|
|
|
|
fn zero_1kb_mut_iter(bh: &mut BenchHarness) {
|
|
|
|
|
bh.iter(|| {
|
|
|
|
|
let mut v: ~[u8] = vec::with_capacity(1024);
|
|
|
|
|
unsafe {
|
2013-12-15 06:05:30 -06:00
|
|
|
|
v.set_len(1024);
|
2013-12-11 23:05:26 -06:00
|
|
|
|
}
|
|
|
|
|
for x in v.mut_iter() {
|
|
|
|
|
*x = 0;
|
|
|
|
|
}
|
2014-02-12 09:39:21 -06:00
|
|
|
|
v
|
2013-12-11 23:05:26 -06:00
|
|
|
|
});
|
|
|
|
|
}
|
2013-12-18 20:23:37 -06:00
|
|
|
|
|
|
|
|
|
#[bench]
|
|
|
|
|
fn random_inserts(bh: &mut BenchHarness) {
|
|
|
|
|
let mut rng = weak_rng();
|
|
|
|
|
bh.iter(|| {
|
|
|
|
|
let mut v = vec::from_elem(30, (0u, 0u));
|
|
|
|
|
for _ in range(0, 100) {
|
|
|
|
|
let l = v.len();
|
|
|
|
|
v.insert(rng.gen::<uint>() % (l + 1),
|
|
|
|
|
(1, 1));
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}
|
2013-12-18 20:56:53 -06:00
|
|
|
|
#[bench]
|
|
|
|
|
fn random_removes(bh: &mut BenchHarness) {
|
|
|
|
|
let mut rng = weak_rng();
|
|
|
|
|
bh.iter(|| {
|
|
|
|
|
let mut v = vec::from_elem(130, (0u, 0u));
|
|
|
|
|
for _ in range(0, 100) {
|
|
|
|
|
let l = v.len();
|
|
|
|
|
v.remove(rng.gen::<uint>() % l);
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}
|
2013-12-18 16:24:26 -06:00
|
|
|
|
|
2013-12-19 21:42:00 -06:00
|
|
|
|
#[bench]
|
2013-12-18 16:24:26 -06:00
|
|
|
|
fn sort_random_small(bh: &mut BenchHarness) {
|
|
|
|
|
let mut rng = weak_rng();
|
|
|
|
|
bh.iter(|| {
|
2013-12-19 21:42:00 -06:00
|
|
|
|
let mut v: ~[u64] = rng.gen_vec(5);
|
2013-12-19 06:03:11 -06:00
|
|
|
|
v.sort();
|
2013-12-18 16:24:26 -06:00
|
|
|
|
});
|
2013-12-19 21:42:00 -06:00
|
|
|
|
bh.bytes = 5 * mem::size_of::<u64>() as u64;
|
2013-12-18 16:24:26 -06:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[bench]
|
|
|
|
|
fn sort_random_medium(bh: &mut BenchHarness) {
|
|
|
|
|
let mut rng = weak_rng();
|
|
|
|
|
bh.iter(|| {
|
2013-12-19 21:42:00 -06:00
|
|
|
|
let mut v: ~[u64] = rng.gen_vec(100);
|
2013-12-19 06:03:11 -06:00
|
|
|
|
v.sort();
|
2013-12-18 16:24:26 -06:00
|
|
|
|
});
|
2013-12-19 21:42:00 -06:00
|
|
|
|
bh.bytes = 100 * mem::size_of::<u64>() as u64;
|
2013-12-18 16:24:26 -06:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[bench]
|
|
|
|
|
fn sort_random_large(bh: &mut BenchHarness) {
|
|
|
|
|
let mut rng = weak_rng();
|
|
|
|
|
bh.iter(|| {
|
2013-12-19 21:42:00 -06:00
|
|
|
|
let mut v: ~[u64] = rng.gen_vec(10000);
|
2013-12-19 06:03:11 -06:00
|
|
|
|
v.sort();
|
2013-12-18 16:24:26 -06:00
|
|
|
|
});
|
2013-12-19 21:42:00 -06:00
|
|
|
|
bh.bytes = 10000 * mem::size_of::<u64>() as u64;
|
2013-12-18 16:24:26 -06:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[bench]
|
|
|
|
|
fn sort_sorted(bh: &mut BenchHarness) {
|
|
|
|
|
let mut v = vec::from_fn(10000, |i| i);
|
|
|
|
|
bh.iter(|| {
|
2013-12-19 06:03:11 -06:00
|
|
|
|
v.sort();
|
2013-12-18 16:24:26 -06:00
|
|
|
|
});
|
|
|
|
|
bh.bytes = (v.len() * mem::size_of_val(&v[0])) as u64;
|
|
|
|
|
}
|
2014-02-04 11:56:13 -06:00
|
|
|
|
|
|
|
|
|
type BigSortable = (u64,u64,u64,u64);
|
|
|
|
|
|
|
|
|
|
#[bench]
|
|
|
|
|
fn sort_big_random_small(bh: &mut BenchHarness) {
|
|
|
|
|
let mut rng = weak_rng();
|
|
|
|
|
bh.iter(|| {
|
|
|
|
|
let mut v: ~[BigSortable] = rng.gen_vec(5);
|
|
|
|
|
v.sort();
|
|
|
|
|
});
|
|
|
|
|
bh.bytes = 5 * mem::size_of::<BigSortable>() as u64;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[bench]
|
|
|
|
|
fn sort_big_random_medium(bh: &mut BenchHarness) {
|
|
|
|
|
let mut rng = weak_rng();
|
|
|
|
|
bh.iter(|| {
|
|
|
|
|
let mut v: ~[BigSortable] = rng.gen_vec(100);
|
|
|
|
|
v.sort();
|
|
|
|
|
});
|
|
|
|
|
bh.bytes = 100 * mem::size_of::<BigSortable>() as u64;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[bench]
|
|
|
|
|
fn sort_big_random_large(bh: &mut BenchHarness) {
|
|
|
|
|
let mut rng = weak_rng();
|
|
|
|
|
bh.iter(|| {
|
|
|
|
|
let mut v: ~[BigSortable] = rng.gen_vec(10000);
|
|
|
|
|
v.sort();
|
|
|
|
|
});
|
|
|
|
|
bh.bytes = 10000 * mem::size_of::<BigSortable>() as u64;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[bench]
|
|
|
|
|
fn sort_big_sorted(bh: &mut BenchHarness) {
|
|
|
|
|
let mut v = vec::from_fn(10000u, |i| (i, i, i, i));
|
|
|
|
|
bh.iter(|| {
|
|
|
|
|
v.sort();
|
|
|
|
|
});
|
|
|
|
|
bh.bytes = (v.len() * mem::size_of_val(&v[0])) as u64;
|
|
|
|
|
}
|
2013-08-02 08:34:11 -05:00
|
|
|
|
}
|