vec.rs 60.0 KB
Newer Older
B
Brian Anderson 已提交
1 2
#[doc = "Vectors"];

3 4
import option::{some, none};
import ptr::addr_of;
5
import libc::size_t;
6

7
export append;
8 9 10 11 12
export init_op;
export is_empty;
export is_not_empty;
export same_length;
export reserve;
13
export reserve_at_least;
B
Brian Anderson 已提交
14
export capacity;
15
export len;
16 17
export from_fn;
export from_elem;
18 19 20 21
export to_mut;
export from_mut;
export head;
export tail;
22
export tailn;
23 24 25 26
export init;
export last;
export last_opt;
export slice;
27
export view;
28 29 30 31 32 33 34 35 36 37 38
export split;
export splitn;
export rsplit;
export rsplitn;
export shift;
export pop;
export push;
export grow;
export grow_fn;
export grow_set;
export map;
39
export mapi;
40
export map2;
41
export flat_map;
42 43 44 45 46 47 48 49 50
export filter_map;
export filter;
export concat;
export connect;
export foldl;
export foldr;
export any;
export any2;
export all;
E
Eric Holk 已提交
51
export alli;
52 53 54 55
export all2;
export contains;
export count;
export find;
56
export find_between;
57
export rfind;
58
export rfind_between;
59
export position_elem;
60
export position;
61
export position_between;
62
export position_elem;
63
export rposition;
64
export rposition_between;
65 66 67 68 69
export unzip;
export zip;
export swap;
export reverse;
export reversed;
70
export iter, iter_between, each, eachi;
71 72 73 74 75 76 77 78
export iter2;
export iteri;
export riter;
export riteri;
export permute;
export windowed;
export as_buf;
export as_mut_buf;
79
export unpack_slice;
80
export unpack_const_slice;
81 82
export unsafe;
export u8;
83
export extensions;
84

85 86
#[abi = "cdecl"]
native mod rustrt {
87 88 89 90 91 92
    fn vec_reserve_shared(++t: *sys::type_desc,
                          ++v: **unsafe::vec_repr,
                          ++n: libc::size_t);
    fn vec_from_buf_shared(++t: *sys::type_desc,
                           ++ptr: *(),
                           ++count: libc::size_t) -> *unsafe::vec_repr;
93 94
}

E
Eric Holk 已提交
95 96 97 98 99
#[abi = "rust-intrinsic"]
native mod rusti {
    fn move_val_init<T>(&dst: T, -src: T);
}

B
Brian Anderson 已提交
100
#[doc = "A function used to initialize the elements of a vector"]
N
Niko Matsakis 已提交
101
type init_op<T> = fn(uint) -> T;
102

B
Brian Anderson 已提交
103
#[doc = "Returns true if a vector contains no elements"]
104 105
pure fn is_empty<T>(v: [const T]/&) -> bool {
    unpack_const_slice(v) {|_p, len| len == 0u}
106 107
}

B
Brian Anderson 已提交
108
#[doc = "Returns true if a vector contains some elements"]
109 110 111
pure fn is_not_empty<T>(v: [const T]/&) -> bool {
    unpack_const_slice(v) {|_p, len| len > 0u}
}
112

B
Brian Anderson 已提交
113
#[doc = "Returns true if two vectors have the same length"]
114 115
pure fn same_length<T, U>(xs: [const T]/&, ys: [const U]/&) -> bool {
    len(xs) == len(ys)
116 117
}

B
Brian Anderson 已提交
118
#[doc = "
119
Reserves capacity for exactly `n` elements in the given vector.
120 121 122 123

If the capacity for `v` is already equal to or greater than the requested
capacity, then no action is taken.

B
Brian Anderson 已提交
124
# Arguments
125

B
Brian Anderson 已提交
126 127 128
* v - A vector
* n - The number of elements to reserve space for
"]
129
fn reserve<T>(&v: [const T], n: uint) {
130 131
    // Only make the (slow) call into the runtime if we have to
    if capacity(v) < n {
132
        let ptr = ptr::addr_of(v) as **unsafe::vec_repr;
133 134
        rustrt::vec_reserve_shared(sys::get_type_desc::<T>(),
                                   ptr, n as size_t);
135
    }
136 137
}

138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
#[doc = "
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 `v` is already equal to or greater than the requested
capacity, then no action is taken.

# Arguments

* v - A vector
* n - The number of elements to reserve space for
"]
fn reserve_at_least<T>(&v: [const T], n: uint) {
    reserve(v, uint::next_power_of_two(n));
}

B
Brian Anderson 已提交
157 158 159
#[doc = "
Returns the number of elements the vector can hold without reallocating
"]
160
#[inline(always)]
161
pure fn capacity<T>(&&v: [const T]) -> uint unsafe {
B
Brian Anderson 已提交
162 163 164 165
    let repr: **unsafe::vec_repr = ::unsafe::reinterpret_cast(addr_of(v));
    (**repr).alloc / sys::size_of::<T>()
}

B
Brian Anderson 已提交
166
#[doc = "Returns the length of a vector"]
167
#[inline(always)]
168
pure fn len<T>(&&v: [const T]/&) -> uint unsafe {
169
    unpack_const_slice(v) {|_p, len| len}
170
}
171

B
Brian Anderson 已提交
172
#[doc = "
173 174 175 176
Creates and initializes an immutable vector.

Creates an immutable vector of size `n_elts` and initializes the elements
to the value returned by the function `op`.
B
Brian Anderson 已提交
177
"]
178
pure fn from_fn<T>(n_elts: uint, op: init_op<T>) -> [T] {
179
    let mut v = [];
180
    unchecked{reserve(v, n_elts);}
181
    let mut i: uint = 0u;
182 183 184 185
    while i < n_elts { v += [op(i)]; i += 1u; }
    ret v;
}

B
Brian Anderson 已提交
186
#[doc = "
187 188 189 190
Creates and initializes an immutable vector.

Creates an immutable vector of size `n_elts` and initializes the elements
to the value `t`.
B
Brian Anderson 已提交
191
"]
192
pure fn from_elem<T: copy>(n_elts: uint, t: T) -> [T] {
193
    let mut v = [];
194
    unchecked{reserve(v, n_elts)}
195
    let mut i: uint = 0u;
196 197 198
    unsafe { // because push is impure
        while i < n_elts { push(v, t); i += 1u; }
    }
199 200 201
    ret v;
}

G
Graydon Hoare 已提交
202 203
#[doc = "Produces a mut vector from an immutable vector."]
fn to_mut<T>(+v: [T]) -> [mut T] unsafe {
204
    ::unsafe::transmute(v)
205 206
}

G
Graydon Hoare 已提交
207 208
#[doc = "Produces an immutable vector from a mut vector."]
fn from_mut<T>(+v: [mut T]) -> [T] unsafe {
209
    ::unsafe::transmute(v)
210 211 212 213
}

// Accessors

B
Brian Anderson 已提交
214
#[doc = "Returns the first element of a vector"]
215
pure fn head<T: copy>(v: [const T]/&) -> T { v[0] }
216

217
#[doc = "Returns a vector containing all but the first element of a slice"]
218
pure fn tail<T: copy>(v: [const T]/&) -> [T] {
219 220 221
    ret slice(v, 1u, len(v));
}

222 223
#[doc = "Returns a vector containing all but the first `n` \
         elements of a slice"]
224
pure fn tailn<T: copy>(v: [const T]/&, n: uint) -> [T] {
225 226 227
    slice(v, n, len(v))
}

228
#[doc = "Returns a vector containing all but the last element of a slice"]
229
pure fn init<T: copy>(v: [const T]/&) -> [T] {
230 231 232 233
    assert len(v) != 0u;
    slice(v, 0u, len(v) - 1u)
}

B
Brian Anderson 已提交
234
#[doc = "
235
Returns the last element of the slice `v`, failing if the slice is empty.
B
Brian Anderson 已提交
236
"]
237
pure fn last<T: copy>(v: [const T]/&) -> T {
238 239
    if len(v) == 0u { fail "last_unsafe: empty vector" }
    v[len(v) - 1u]
240 241
}

B
Brian Anderson 已提交
242
#[doc = "
243 244
Returns `some(x)` where `x` is the last element of the slice `v`,
or `none` if the vector is empty.
B
Brian Anderson 已提交
245
"]
246 247
pure fn last_opt<T: copy>(v: [const T]/&) -> option<T> {
    if len(v) == 0u { ret none; }
248
    some(v[len(v) - 1u])
T
Tim Chevalier 已提交
249
}
250

B
Brian Anderson 已提交
251
#[doc = "Returns a copy of the elements from [`start`..`end`) from `v`."]
252
pure fn slice<T: copy>(v: [const T]/&, start: uint, end: uint) -> [T] {
253 254
    assert (start <= end);
    assert (end <= len(v));
255
    let mut result = [];
256
    unchecked{reserve(result, end - start)}
257
    let mut i = start;
258 259 260 261
    while i < end { result += [v[i]]; i += 1u; }
    ret result;
}

262
#[doc = "Return a slice that points into another slice."]
263
pure fn view<T: copy>(v: [T]/&, start: uint, end: uint) -> [T]/&a {
264 265 266 267 268 269 270 271 272 273
    assert (start <= end);
    assert (end <= len(v));
    unpack_slice(v) {|p, _len|
        unsafe {
            ::unsafe::reinterpret_cast(
                (ptr::offset(p, start), (end - start) * sys::size_of::<T>()))
        }
    }
}

B
Brian Anderson 已提交
274
#[doc = "
275
Split the vector `v` by applying each element against the predicate `f`.
B
Brian Anderson 已提交
276
"]
277
fn split<T: copy>(v: [T]/&, f: fn(T) -> bool) -> [[T]] {
278 279 280
    let ln = len(v);
    if (ln == 0u) { ret [] }

281 282
    let mut start = 0u;
    let mut result = [];
283
    while start < ln {
284
        alt position_between(v, start, ln, f) {
285 286 287 288 289 290 291 292 293 294 295
          none { break }
          some(i) {
            push(result, slice(v, start, i));
            start = i + 1u;
          }
        }
    }
    push(result, slice(v, start, ln));
    result
}

B
Brian Anderson 已提交
296
#[doc = "
297 298
Split the vector `v` by applying each element against the predicate `f` up
to `n` times.
B
Brian Anderson 已提交
299
"]
300
fn splitn<T: copy>(v: [T]/&, n: uint, f: fn(T) -> bool) -> [[T]] {
301 302 303
    let ln = len(v);
    if (ln == 0u) { ret [] }

304 305 306
    let mut start = 0u;
    let mut count = n;
    let mut result = [];
307
    while start < ln && count > 0u {
308
        alt position_between(v, start, ln, f) {
309 310 311 312 313 314 315 316 317 318 319 320 321
          none { break }
          some(i) {
            push(result, slice(v, start, i));
            // Make sure to skip the separator.
            start = i + 1u;
            count -= 1u;
          }
        }
    }
    push(result, slice(v, start, ln));
    result
}

B
Brian Anderson 已提交
322
#[doc = "
323 324
Reverse split the vector `v` by applying each element against the predicate
`f`.
B
Brian Anderson 已提交
325
"]
326
fn rsplit<T: copy>(v: [T]/&, f: fn(T) -> bool) -> [[T]] {
327 328 329
    let ln = len(v);
    if (ln == 0u) { ret [] }

330 331
    let mut end = ln;
    let mut result = [];
332
    while end > 0u {
333
        alt rposition_between(v, 0u, end, f) {
334 335 336 337 338 339 340 341 342 343 344
          none { break }
          some(i) {
            push(result, slice(v, i + 1u, end));
            end = i;
          }
        }
    }
    push(result, slice(v, 0u, end));
    reversed(result)
}

B
Brian Anderson 已提交
345
#[doc = "
346 347
Reverse split the vector `v` by applying each element against the predicate
`f` up to `n times.
B
Brian Anderson 已提交
348
"]
349
fn rsplitn<T: copy>(v: [T]/&, n: uint, f: fn(T) -> bool) -> [[T]] {
350 351 352
    let ln = len(v);
    if (ln == 0u) { ret [] }

353 354 355
    let mut end = ln;
    let mut count = n;
    let mut result = [];
356
    while end > 0u && count > 0u {
357
        alt rposition_between(v, 0u, end, f) {
358 359 360 361 362 363 364 365 366 367 368 369
          none { break }
          some(i) {
            push(result, slice(v, i + 1u, end));
            // Make sure to skip the separator.
            end = i;
            count -= 1u;
          }
        }
    }
    push(result, slice(v, 0u, end));
    reversed(result)
}
370 371 372

// Mutators

B
Brian Anderson 已提交
373
#[doc = "Removes the first element from a vector and return it"]
374
fn shift<T: copy>(&v: [T]) -> T {
375 376 377 378 379 380 381
    let ln = len::<T>(v);
    assert (ln > 0u);
    let e = v[0];
    v = slice::<T>(v, 1u, ln);
    ret e;
}

B
Brian Anderson 已提交
382
#[doc = "Prepend an element to a vector"]
383 384
fn unshift<T: copy>(&v: [T], +t: T) {
    v = [t] + v;
B
Brian Anderson 已提交
385 386
}

B
Brian Anderson 已提交
387
#[doc = "Remove the last element from a vector and return it"]
M
Marijn Haverbeke 已提交
388
fn pop<T>(&v: [const T]) -> T unsafe {
389
    let ln = len(v);
M
Marijn Haverbeke 已提交
390 391
    assert ln > 0u;
    let valptr = ptr::mut_addr_of(v[ln - 1u]);
392
    let val <- *valptr;
M
Marijn Haverbeke 已提交
393
    unsafe::set_len(v, ln - 1u);
394
    val
395 396
}

B
Brian Anderson 已提交
397
#[doc = "Append an element to a vector"]
398
#[inline(always)]
399
fn push<T>(&v: [const T], +initval: T) {
400
    unsafe {
E
Eric Holk 已提交
401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418
        let repr: **unsafe::vec_repr = ::unsafe::reinterpret_cast(addr_of(v));
        let fill = (**repr).fill;
        if (**repr).alloc > fill {
            let sz = sys::size_of::<T>();
            (**repr).fill += sz;
            let p = ptr::addr_of((**repr).data);
            let p = ptr::offset(p, fill) as *mut T;
            rusti::move_val_init(*p, initval);
        }
        else {
            push_slow(v, initval);
        }
    }
}

fn push_slow<T>(&v: [const T], +initval: T) {
    unsafe {
        let ln = v.len();
419
        reserve_at_least(v, ln + 1u);
E
Eric Holk 已提交
420 421 422 423 424 425 426
        let repr: **unsafe::vec_repr = ::unsafe::reinterpret_cast(addr_of(v));
        let fill = (**repr).fill;
        let sz = sys::size_of::<T>();
        (**repr).fill += sz;
        let p = ptr::addr_of((**repr).data);
        let p = ptr::offset(p, fill) as *mut T;
        rusti::move_val_init(*p, initval);
427
    }
E
Erick Tryzelaar 已提交
428 429
}

430 431 432 433 434 435
#[inline(always)]
fn push_all<T: copy>(&v: [const T], rhs: [const T]/&) {
    for uint::range(0u, rhs.len()) {|i|
        push(v, rhs[i]);
    }
}
436 437

// Appending
438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476
#[inline(always)]
pure fn append<T: copy>(lhs: [T]/&, rhs: [const T]/&) -> [T] {
    let mut v = [];
    let mut i = 0u;
    while i < lhs.len() {
        unsafe { // This is impure, but it appears pure to the caller.
            push(v, lhs[i]);
        }
        i += 1u;
    }
    i = 0u;
    while i < rhs.len() {
        unsafe { // This is impure, but it appears pure to the caller.
            push(v, rhs[i]);
        }
        i += 1u;
    }
    ret v;
}

#[inline(always)]
pure fn append_mut<T: copy>(lhs: [mut T]/&, rhs: [const T]/&) -> [mut T] {
    let mut v = [mut];
    let mut i = 0u;
    while i < lhs.len() {
        unsafe { // This is impure, but it appears pure to the caller.
            push(v, lhs[i]);
        }
        i += 1u;
    }
    i = 0u;
    while i < rhs.len() {
        unsafe { // This is impure, but it appears pure to the caller.
            push(v, rhs[i]);
        }
        i += 1u;
    }
    ret v;
}
477

B
Brian Anderson 已提交
478
#[doc = "
479 480
Expands a vector in place, initializing the new elements to a given value

B
Brian Anderson 已提交
481
# Arguments
482

B
Brian Anderson 已提交
483 484 485 486
* v - The vector to grow
* n - The number of elements to add
* initval - The value for the new elements
"]
487
fn grow<T: copy>(&v: [const T], n: uint, initval: T) {
488
    reserve_at_least(v, len(v) + n);
489
    let mut i: uint = 0u;
490 491

    while i < n { push(v, initval); i += 1u; }
492 493
}

B
Brian Anderson 已提交
494 495 496
#[doc = "
Expands a vector in place, initializing the new elements to the result of
a function
497

498
Function `init_op` is called `n` times with the values [0..`n`)
499

B
Brian Anderson 已提交
500
# Arguments
501

B
Brian Anderson 已提交
502 503 504 505 506
* v - The vector to grow
* n - The number of elements to add
* init_op - A function to call to retreive each appended element's
            value
"]
507
fn grow_fn<T>(&v: [const T], n: uint, op: init_op<T>) {
508
    reserve_at_least(v, len(v) + n);
509
    let mut i: uint = 0u;
510
    while i < n { push(v, op(i)); i += 1u; }
511 512
}

B
Brian Anderson 已提交
513
#[doc = "
514 515 516 517 518 519
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.
B
Brian Anderson 已提交
520
"]
E
Eric Holk 已提交
521
#[inline(always)]
G
Graydon Hoare 已提交
522
fn grow_set<T: copy>(&v: [mut T], index: uint, initval: T, val: T) {
523
    if index >= len(v) { grow(v, index - len(v) + 1u, initval); }
524 525 526 527 528 529
    v[index] = val;
}


// Functional utilities

B
Brian Anderson 已提交
530
#[doc = "
531
Apply a function to each element of a vector and return the results
B
Brian Anderson 已提交
532
"]
533
pure fn map<T, U>(v: [T]/&, f: fn(T) -> U) -> [U] {
534
    let mut result = [];
535
    unchecked{reserve(result, len(v));}
536
    for each(v) {|elem| unsafe { push(result, f(elem)); } }
537 538 539
    ret result;
}

540 541 542
#[doc = "
Apply a function to each element of a vector and return the results
"]
543
pure fn mapi<T, U>(v: [T]/&, f: fn(uint, T) -> U) -> [U] {
544
    let mut result = [];
545
    unchecked{reserve(result, len(v));}
546 547 548 549
    for eachi(v) {|i, elem| result += [f(i, elem)]; }
    ret result;
}

B
Brian Anderson 已提交
550
#[doc = "
551
Apply a function to each element of a vector and return a concatenation
B
Brian Anderson 已提交
552 553
of each result vector
"]
554
pure fn flat_map<T, U>(v: [T]/&, f: fn(T) -> [U]) -> [U] {
555
    let mut result = [];
556
    for each(v) {|elem| result += f(elem); }
557 558 559
    ret result;
}

B
Brian Anderson 已提交
560
#[doc = "
561
Apply a function to each pair of elements and return the results
B
Brian Anderson 已提交
562
"]
563
pure fn map2<T: copy, U: copy, V>(v0: [T]/&, v1: [U]/&,
564
                                  f: fn(T, U) -> V) -> [V] {
565 566
    let v0_len = len(v0);
    if v0_len != len(v1) { fail; }
567 568
    let mut u: [V] = [];
    let mut i = 0u;
569 570 571 572
    while i < v0_len {
        unsafe { push(u, f(copy v0[i], copy v1[i])) };
        i += 1u;
    }
573 574 575
    ret u;
}

B
Brian Anderson 已提交
576
#[doc = "
577 578 579 580
Apply a function to each element of a vector and return the results

If function `f` returns `none` then that element is excluded from
the resulting vector.
B
Brian Anderson 已提交
581
"]
582
pure fn filter_map<T, U: copy>(v: [T]/&, f: fn(T) -> option<U>)
583
    -> [U] {
584
    let mut result = [];
585
    for each(v) {|elem|
586
        alt f(elem) {
587
          none {/* no-op */ }
588
          some(result_elem) { unsafe { push(result, result_elem); } }
589 590 591 592 593
        }
    }
    ret result;
}

B
Brian Anderson 已提交
594
#[doc = "
595 596 597 598 599
Construct a new vector from the elements of a vector for which some predicate
holds.

Apply function `f` to each element of `v` and return a vector containing
only those elements for which `f` returned true.
B
Brian Anderson 已提交
600
"]
601
pure fn filter<T: copy>(v: [T]/&, f: fn(T) -> bool) -> [T] {
602
    let mut result = [];
603
    for each(v) {|elem|
604
        if f(elem) { unsafe { push(result, elem); } }
605 606 607 608
    }
    ret result;
}

B
Brian Anderson 已提交
609 610
#[doc = "
Concatenate a vector of vectors.
611

B
Brian Anderson 已提交
612 613
Flattens a vector of vectors of T into a single vector of T.
"]
614
pure fn concat<T: copy>(v: [[T]]/&) -> [T] {
615
    let mut r = [];
616
    for each(v) {|inner| unsafe { push_all(r, inner); } }
617
    ret r;
618 619
}

B
Brian Anderson 已提交
620
#[doc = "
621
Concatenate a vector of vectors, placing a given separator between each
B
Brian Anderson 已提交
622
"]
623
pure fn connect<T: copy>(v: [[T]]/&, sep: T) -> [T] {
624
    let mut r: [T] = [];
625
    let mut first = true;
626
    for each(v) {|inner|
627
        if first { first = false; } else { unsafe { push(r, sep); } }
628
        r += inner;
629
    }
630
    ret r;
631 632
}

B
Brian Anderson 已提交
633
#[doc = "Reduce a vector from left to right"]
634
pure fn foldl<T: copy, U>(z: T, v: [U]/&, p: fn(T, U) -> T) -> T {
635
    let mut accum = z;
636 637 638 639 640 641
    iter(v) { |elt|
        accum = p(accum, elt);
    }
    ret accum;
}

B
Brian Anderson 已提交
642
#[doc = "Reduce a vector from right to left"]
643
pure fn foldr<T, U: copy>(v: [T]/&, z: U, p: fn(T, U) -> U) -> U {
644
    let mut accum = z;
645 646 647 648 649 650
    riter(v) { |elt|
        accum = p(elt, accum);
    }
    ret accum;
}

B
Brian Anderson 已提交
651
#[doc = "
652 653 654
Return true if a predicate matches any elements

If the vector contains no elements then false is returned.
B
Brian Anderson 已提交
655
"]
656
pure fn any<T>(v: [T]/&, f: fn(T) -> bool) -> bool {
657
    for each(v) {|elem| if f(elem) { ret true; } }
658 659 660
    ret false;
}

B
Brian Anderson 已提交
661
#[doc = "
662 663 664
Return true if a predicate matches any elements in both vectors.

If the vectors contains no elements then false is returned.
B
Brian Anderson 已提交
665
"]
666
pure fn any2<T, U>(v0: [T]/&, v1: [U]/&,
667
                   f: fn(T, U) -> bool) -> bool {
668 669
    let v0_len = len(v0);
    let v1_len = len(v1);
670
    let mut i = 0u;
671 672 673 674 675 676 677
    while i < v0_len && i < v1_len {
        if f(v0[i], v1[i]) { ret true; };
        i += 1u;
    }
    ret false;
}

B
Brian Anderson 已提交
678
#[doc = "
679 680 681
Return true if a predicate matches all elements

If the vector contains no elements then true is returned.
B
Brian Anderson 已提交
682
"]
683
pure fn all<T>(v: [T]/&, f: fn(T) -> bool) -> bool {
684
    for each(v) {|elem| if !f(elem) { ret false; } }
685 686 687
    ret true;
}

688 689 690 691 692
#[doc = "
Return true if a predicate matches all elements

If the vector contains no elements then true is returned.
"]
693
pure fn alli<T>(v: [T]/&, f: fn(uint, T) -> bool) -> bool {
694 695 696 697
    for eachi(v) {|i, elem| if !f(i, elem) { ret false; } }
    ret true;
}

B
Brian Anderson 已提交
698
#[doc = "
699 700 701
Return true if a predicate matches all elements in both vectors.

If the vectors are not the same size then false is returned.
B
Brian Anderson 已提交
702
"]
703
pure fn all2<T, U>(v0: [T]/&, v1: [U]/&,
704
                   f: fn(T, U) -> bool) -> bool {
705 706
    let v0_len = len(v0);
    if v0_len != len(v1) { ret false; }
707
    let mut i = 0u;
708 709 710 711
    while i < v0_len { if !f(v0[i], v1[i]) { ret false; }; i += 1u; }
    ret true;
}

B
Brian Anderson 已提交
712
#[doc = "Return true if a vector contains an element with the given value"]
713
pure fn contains<T>(v: [T]/&, x: T) -> bool {
714
    for each(v) {|elt| if x == elt { ret true; } }
715 716 717
    ret false;
}

B
Brian Anderson 已提交
718
#[doc = "Returns the number of elements that are equal to a given value"]
719
pure fn count<T>(v: [T]/&, x: T) -> uint {
720
    let mut cnt = 0u;
721
    for each(v) {|elt| if x == elt { cnt += 1u; } }
722 723 724
    ret cnt;
}

B
Brian Anderson 已提交
725
#[doc = "
726
Search for the first element that matches a given predicate
727 728 729 730

Apply function `f` to each element of `v`, starting from the first.
When function `f` returns true then an option containing the element
is returned. If `f` matches no elements then none is returned.
B
Brian Anderson 已提交
731
"]
732
pure fn find<T: copy>(v: [T]/&, f: fn(T) -> bool) -> option<T> {
733
    find_between(v, 0u, len(v), f)
734 735
}

B
Brian Anderson 已提交
736
#[doc = "
737 738 739 740 741
Search for the first element that matches a given predicate within a range

Apply function `f` to each element of `v` within the range [`start`, `end`).
When function `f` returns true then an option containing the element
is returned. If `f` matches no elements then none is returned.
B
Brian Anderson 已提交
742
"]
743
pure fn find_between<T: copy>(v: [T]/&, start: uint, end: uint,
744
                      f: fn(T) -> bool) -> option<T> {
745
    option::map(position_between(v, start, end, f)) { |i| v[i] }
746 747
}

B
Brian Anderson 已提交
748
#[doc = "
749 750 751 752 753
Search for the last element that matches a given predicate

Apply function `f` to each element of `v` in reverse order. When function `f`
returns true then an option containing the element is returned. If `f`
matches no elements then none is returned.
B
Brian Anderson 已提交
754
"]
755
pure fn rfind<T: copy>(v: [T]/&, f: fn(T) -> bool) -> option<T> {
756
    rfind_between(v, 0u, len(v), f)
757 758
}

B
Brian Anderson 已提交
759
#[doc = "
760 761 762 763 764
Search for the last element that matches a given predicate within a range

Apply function `f` to each element of `v` in reverse order within the range
[`start`, `end`). When function `f` returns true then an option containing
the element is returned. If `f` matches no elements then none is returned.
B
Brian Anderson 已提交
765
"]
766
pure fn rfind_between<T: copy>(v: [T]/&, start: uint, end: uint,
767
                               f: fn(T) -> bool) -> option<T> {
768
    option::map(rposition_between(v, start, end, f)) { |i| v[i] }
769 770
}

B
Brian Anderson 已提交
771
#[doc = "Find the first index containing a matching value"]
772
pure fn position_elem<T>(v: [T]/&, x: T) -> option<uint> {
773
    position(v) { |y| x == y }
774 775
}

B
Brian Anderson 已提交
776
#[doc = "
777 778 779 780 781
Find the first index matching some predicate

Apply function `f` to each element of `v`.  When function `f` returns true
then an option containing the index is returned. If `f` matches no elements
then none is returned.
B
Brian Anderson 已提交
782
"]
783
pure fn position<T>(v: [T]/&, f: fn(T) -> bool) -> option<uint> {
784
    position_between(v, 0u, len(v), f)
785 786
}

B
Brian Anderson 已提交
787
#[doc = "
788 789 790 791 792
Find the first index matching some predicate within a range

Apply function `f` to each element of `v` between the range [`start`, `end`).
When function `f` returns true then an option containing the index is
returned. If `f` matches no elements then none is returned.
B
Brian Anderson 已提交
793
"]
794
pure fn position_between<T>(v: [T]/&, start: uint, end: uint,
795
                            f: fn(T) -> bool) -> option<uint> {
796 797
    assert start <= end;
    assert end <= len(v);
798
    let mut i = start;
799
    while i < end { if f(v[i]) { ret some::<uint>(i); } i += 1u; }
800 801 802
    ret none;
}

B
Brian Anderson 已提交
803
#[doc = "Find the last index containing a matching value"]
804
pure fn rposition_elem<T>(v: [T]/&, x: T) -> option<uint> {
805 806 807
    rposition(v) { |y| x == y }
}

B
Brian Anderson 已提交
808
#[doc = "
809
Find the last index matching some predicate
810

811 812 813
Apply function `f` to each element of `v` in reverse order.  When function
`f` returns true then an option containing the index is returned. If `f`
matches no elements then none is returned.
B
Brian Anderson 已提交
814
"]
815
pure fn rposition<T>(v: [T]/&, f: fn(T) -> bool) -> option<uint> {
816
    rposition_between(v, 0u, len(v), f)
817 818
}

B
Brian Anderson 已提交
819
#[doc = "
820 821 822 823 824
Find the last index matching some predicate within a range

Apply function `f` to each element of `v` in reverse order between the range
[`start`, `end`). When function `f` returns true then an option containing
the index is returned. If `f` matches no elements then none is returned.
B
Brian Anderson 已提交
825
"]
826
pure fn rposition_between<T>(v: [T]/&, start: uint, end: uint,
827
                             f: fn(T) -> bool) -> option<uint> {
828 829
    assert start <= end;
    assert end <= len(v);
830
    let mut i = end;
831 832 833 834
    while i > start {
        if f(v[i - 1u]) { ret some::<uint>(i - 1u); }
        i -= 1u;
    }
835 836 837 838 839 840 841
    ret none;
}

// FIXME: if issue #586 gets implemented, could have a postcondition
// saying the two result lists have the same length -- or, could
// return a nominal record with a constraint saying that, instead of
// returning a tuple (contingent on issue #869)
B
Brian Anderson 已提交
842
#[doc = "
843 844 845 846 847 848
Convert a vector of pairs into a pair of vectors

Returns a tuple containing two vectors where the i-th element of the first
vector contains the first element of the i-th tuple of the input vector,
and the i-th element of the second vector contains the second element
of the i-th tuple of the input vector.
B
Brian Anderson 已提交
849
"]
850
pure fn unzip<T: copy, U: copy>(v: [(T, U)]/&) -> ([T], [U]) {
851
    let mut as = [], bs = [];
852
    for each(v) {|p| let (a, b) = p; as += [a]; bs += [b]; }
853 854 855
    ret (as, bs);
}

B
Brian Anderson 已提交
856
#[doc = "
857 858 859 860
Convert two vectors to a vector of pairs

Returns a vector of tuples, where the i-th tuple contains contains the
i-th elements from each of the input vectors.
B
Brian Anderson 已提交
861
"]
862
pure fn zip<T: copy, U: copy>(v: [const T]/&, u: [const U]/&) -> [(T, U)] {
863 864 865
    let mut zipped = [];
    let sz = len(v);
    let mut i = 0u;
866
    assert sz == len(u);
867 868 869 870
    while i < sz { zipped += [(v[i], u[i])]; i += 1u; }
    ret zipped;
}

B
Brian Anderson 已提交
871
#[doc = "
872 873
Swaps two elements in a vector

B
Brian Anderson 已提交
874 875 876 877 878 879
# Arguments

* v  The input vector
* a - The index of the first element
* b - The index of the second element
"]
880
fn swap<T>(&&v: [mut T], a: uint, b: uint) {
881 882 883
    v[a] <-> v[b];
}

B
Brian Anderson 已提交
884
#[doc = "Reverse the order of elements in a vector, in place"]
G
Graydon Hoare 已提交
885
fn reverse<T>(v: [mut T]) {
886
    let mut i: uint = 0u;
887 888 889 890 891
    let ln = len::<T>(v);
    while i < ln / 2u { v[i] <-> v[ln - i - 1u]; i += 1u; }
}


B
Brian Anderson 已提交
892
#[doc = "Returns a vector with the order of elements reversed"]
893
fn reversed<T: copy>(v: [const T]/&) -> [T] {
894 895
    let mut rs: [T] = [];
    let mut i = len::<T>(v);
896 897 898 899 900 901
    if i == 0u { ret rs; } else { i -= 1u; }
    while i != 0u { rs += [v[i]]; i -= 1u; }
    rs += [v[0]];
    ret rs;
}

B
Brian Anderson 已提交
902
#[doc = "
903
Iterates over a slice
904

905
Iterates over slice `v` and, for each element, calls function `f` with the
906
element's value.
B
Brian Anderson 已提交
907
"]
908
#[inline(always)]
909
pure fn iter<T>(v: [T]/&, f: fn(T)) {
910 911 912 913 914 915
    iter_between(v, 0u, vec::len(v), f)
}

/*
Function: iter_between

916
Iterates over a slice
917

918
Iterates over slice `v` and, for each element, calls function `f` with the
919 920 921 922
element's value.

*/
#[inline(always)]
923 924 925 926 927 928 929 930 931 932 933 934
pure fn iter_between<T>(v: [T]/&, start: uint, end: uint, f: fn(T)) {
    unpack_slice(v) { |base_ptr, len|
        assert start <= end;
        assert end <= len;
        unsafe {
            let mut n = end;
            let mut p = ptr::offset(base_ptr, start);
            while n > start {
                f(*p);
                p = ptr::offset(p, 1u);
                n -= 1u;
            }
935 936
        }
    }
937 938
}

939 940
#[doc = "
Iterates over a vector, with option to break
941 942

Return true to continue, false to break.
943 944
"]
#[inline(always)]
945
pure fn each<T>(v: [const T]/&, f: fn(T) -> bool) unsafe {
946 947 948 949 950 951 952 953
    vec::unpack_slice(v) {|p, n|
        let mut n = n;
        let mut p = p;
        while n > 0u {
            if !f(*p) { break; }
            p = ptr::offset(p, 1u);
            n -= 1u;
        }
954 955 956 957 958
    }
}

#[doc = "
Iterates over a vector's elements and indices
959 960

Return true to continue, false to break.
961 962
"]
#[inline(always)]
963
pure fn eachi<T>(v: [const T]/&, f: fn(uint, T) -> bool) unsafe {
964 965 966 967 968 969 970 971
    vec::unpack_slice(v) {|p, n|
        let mut i = 0u;
        let mut p = p;
        while i < n {
            if !f(i, *p) { break; }
            p = ptr::offset(p, 1u);
            i += 1u;
        }
972 973 974
    }
}

975 976 977 978 979 980 981
#[doc = "
Iterates over two vectors simultaneously

# Failure

Both vectors must have the same length
"]
982
#[inline]
983
fn iter2<U, T>(v1: [U]/&, v2: [T]/&, f: fn(U, T)) {
984
    assert len(v1) == len(v2);
985
    for uint::range(0u, len(v1)) {|i|
986 987
        f(v1[i], v2[i])
    }
988 989
}

B
Brian Anderson 已提交
990
#[doc = "
991 992 993 994
Iterates over a vector's elements and indexes

Iterates over vector `v` and, for each element, calls function `f` with the
element's value and index.
B
Brian Anderson 已提交
995
"]
996
#[inline(always)]
997
pure fn iteri<T>(v: [T]/&, f: fn(uint, T)) {
998 999
    let mut i = 0u;
    let l = len(v);
1000 1001 1002
    while i < l { f(i, v[i]); i += 1u; }
}

B
Brian Anderson 已提交
1003
#[doc = "
1004 1005 1006 1007
Iterates over a vector in reverse

Iterates over vector `v` and, for each element, calls function `f` with the
element's value.
B
Brian Anderson 已提交
1008
"]
1009
pure fn riter<T>(v: [T]/&, f: fn(T)) {
1010
    riteri(v) { |_i, v| f(v) }
1011 1012
}

B
Brian Anderson 已提交
1013
#[doc ="
1014 1015 1016 1017
Iterates over a vector's elements and indexes in reverse

Iterates over vector `v` and, for each element, calls function `f` with the
element's value and index.
B
Brian Anderson 已提交
1018
"]
1019
pure fn riteri<T>(v: [T]/&, f: fn(uint, T)) {
1020
    let mut i = len(v);
1021 1022 1023 1024 1025 1026
    while 0u < i {
        i -= 1u;
        f(i, v[i]);
    };
}

B
Brian Anderson 已提交
1027 1028
#[doc = "
Iterate over all permutations of vector `v`.
1029

B
Brian Anderson 已提交
1030 1031 1032
Permutations are produced in lexicographic order with respect to the order of
elements in `v` (so if `v` is sorted then the permutations are
lexicographically sorted).
1033 1034 1035

The total number of permutations produced is `len(v)!`.  If `v` contains
repeated elements, then some permutations are repeated.
B
Brian Anderson 已提交
1036
"]
1037
pure fn permute<T: copy>(v: [T]/&, put: fn([T])) {
1038 1039 1040 1041
  let ln = len(v);
  if ln == 0u {
    put([]);
  } else {
1042
    let mut i = 0u;
1043 1044 1045 1046 1047 1048 1049 1050 1051
    while i < ln {
      let elt = v[i];
      let rest = slice(v, 0u, i) + slice(v, i+1u, ln);
      permute(rest) {|permutation| put([elt] + permutation)}
      i += 1u;
    }
  }
}

1052
pure fn windowed<TT: copy>(nn: uint, xx: [TT]/&) -> [[TT]] {
1053 1054 1055 1056 1057 1058 1059 1060 1061
    let mut ww = [];
    assert 1u <= nn;
    vec::iteri (xx, {|ii, _x|
        let len = vec::len(xx);
        if ii+nn <= len {
            ww += [vec::slice(xx, ii, ii+nn)];
        }
    });
    ret ww;
1062 1063
}

B
Brian Anderson 已提交
1064 1065
#[doc = "
Work with the buffer of a vector.
1066

B
Brian Anderson 已提交
1067 1068 1069
Allows for unsafe manipulation of vector contents, which is useful for native
interop.
"]
1070 1071
fn as_buf<E,T>(v: [E]/&, f: fn(*E) -> T) -> T unsafe {
    unpack_slice(v) { |buf, _len| f(buf) }
1072 1073
}

1074 1075
fn as_mut_buf<E,T>(v: [mut E]/&, f: fn(*mut E) -> T) -> T unsafe {
    unpack_mut_slice(v) { |buf, _len| f(buf) }
1076 1077
}

1078 1079 1080
#[doc = "
Work with the buffer and length of a slice.
"]
1081
#[inline(always)]
1082
pure fn unpack_slice<T,U>(s: [const T]/&,
1083
                          f: fn(*T, uint) -> U) -> U unsafe {
1084 1085 1086 1087 1088
    let v : *(*T,uint) = ::unsafe::reinterpret_cast(ptr::addr_of(s));
    let (buf,len) = *v;
    f(buf, len / sys::size_of::<T>())
}

1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110
#[doc = "
Work with the buffer and length of a slice.
"]
#[inline(always)]
pure fn unpack_const_slice<T,U>(s: [const T]/&,
                                f: fn(*const T, uint) -> U) -> U unsafe {
    let v : *(*const T,uint) = ::unsafe::reinterpret_cast(ptr::addr_of(s));
    let (buf,len) = *v;
    f(buf, len / sys::size_of::<T>())
}

#[doc = "
Work with the buffer and length of a slice.
"]
#[inline(always)]
pure fn unpack_mut_slice<T,U>(s: [mut T]/&,
                              f: fn(*mut T, uint) -> U) -> U unsafe {
    let v : *(*const T,uint) = ::unsafe::reinterpret_cast(ptr::addr_of(s));
    let (buf,len) = *v;
    f(buf, len / sys::size_of::<T>())
}

1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124
impl extensions<T: copy> for [T] {
    #[inline(always)]
    pure fn +(rhs: [T]/&) -> [T] {
        append(self, rhs)
    }
}

impl extensions<T: copy> for [mut T] {
    #[inline(always)]
    pure fn +(rhs: [mut T]/&) -> [mut T] {
        append_mut(self, rhs)
    }
}

1125
#[doc = "Extension methods for vectors"]
1126
impl extensions/&<T> for [const T]/& {
1127 1128
    #[doc = "Returns true if a vector contains no elements"]
    #[inline]
1129
    pure fn is_empty() -> bool { is_empty(self) }
1130 1131
    #[doc = "Returns true if a vector contains some elements"]
    #[inline]
1132
    pure fn is_not_empty() -> bool { is_not_empty(self) }
1133 1134 1135 1136 1137 1138 1139 1140 1141
    #[doc = "Returns the length of a vector"]
    #[inline]
    pure fn len() -> uint { len(self) }
}

#[doc = "Extension methods for vectors"]
impl extensions/&<T: copy> for [const T]/& {
    #[doc = "Returns the first element of a vector"]
    #[inline]
1142
    pure fn head() -> T { head(self) }
1143 1144
    #[doc = "Returns all but the last elemnt of a vector"]
    #[inline]
1145
    pure fn init() -> [T] { init(self) }
1146 1147 1148 1149
    #[doc = "
    Returns the last element of a `v`, failing if the vector is empty.
    "]
    #[inline]
1150
    pure fn last() -> T { last(self) }
1151 1152
    #[doc = "Returns a copy of the elements from [`start`..`end`) from `v`."]
    #[inline]
1153
    pure fn slice(start: uint, end: uint) -> [T] { slice(self, start, end) }
1154 1155
    #[doc = "Returns all but the first element of a vector"]
    #[inline]
1156
    pure fn tail() -> [T] { tail(self) }
1157 1158 1159 1160 1161 1162
}

#[doc = "Extension methods for vectors"]
impl extensions/&<T> for [T]/& {
    #[doc = "Reduce a vector from right to left"]
    #[inline]
1163
    pure fn foldr<U: copy>(z: U, p: fn(T, U) -> U) -> U { foldr(self, z, p) }
1164 1165 1166 1167 1168 1169 1170
    #[doc = "
    Iterates over a vector

    Iterates over vector `v` and, for each element, calls function `f` with
    the element's value.
    "]
    #[inline]
1171
    pure fn iter(f: fn(T)) { iter(self, f) }
1172 1173 1174 1175 1176 1177 1178
    #[doc = "
    Iterates over a vector's elements and indexes

    Iterates over vector `v` and, for each element, calls function `f` with
    the element's value and index.
    "]
    #[inline]
1179
    pure fn iteri(f: fn(uint, T)) { iteri(self, f) }
1180 1181 1182 1183 1184 1185 1186 1187
    #[doc = "
    Find the first index matching some predicate

    Apply function `f` to each element of `v`.  When function `f` returns true
    then an option containing the index is returned. If `f` matches no
    elements then none is returned.
    "]
    #[inline]
1188
    pure fn position(f: fn(T) -> bool) -> option<uint> { position(self, f) }
1189 1190
    #[doc = "Find the first index containing a matching value"]
    #[inline]
1191
    pure fn position_elem(x: T) -> option<uint> { position_elem(self, x) }
1192 1193 1194 1195 1196 1197 1198
    #[doc = "
    Iterates over a vector in reverse

    Iterates over vector `v` and, for each element, calls function `f` with
    the element's value.
    "]
    #[inline]
1199
    pure fn riter(f: fn(T)) { riter(self, f) }
1200 1201 1202 1203 1204 1205 1206
    #[doc ="
    Iterates over a vector's elements and indexes in reverse

    Iterates over vector `v` and, for each element, calls function `f` with
    the element's value and index.
    "]
    #[inline]
1207
    pure fn riteri(f: fn(uint, T)) { riteri(self, f) }
1208 1209 1210 1211 1212 1213 1214 1215
    #[doc = "
    Find the last index matching some predicate

    Apply function `f` to each element of `v` in reverse order.  When function
    `f` returns true then an option containing the index is returned. If `f`
    matches no elements then none is returned.
    "]
    #[inline]
1216
    pure fn rposition(f: fn(T) -> bool) -> option<uint> { rposition(self, f) }
1217 1218
    #[doc = "Find the last index containing a matching value"]
    #[inline]
1219
    pure fn rposition_elem(x: T) -> option<uint> { rposition_elem(self, x) }
1220
    #[doc = "
1221
    Apply a function to each element of a vector and return the results
1222 1223
    "]
    #[inline]
1224
    pure fn map<U>(f: fn(T) -> U) -> [U] { map(self, f) }
1225
    #[doc = "
N
Niko Matsakis 已提交
1226 1227 1228
    Apply a function to the index and value of each element in the vector
    and return the results
    "]
1229
    pure fn mapi<U>(f: fn(uint, T) -> U) -> [U] {
1230
        mapi(self, f)
N
Niko Matsakis 已提交
1231
    }
1232 1233 1234
    #[doc = "Returns true if the function returns true for all elements.

    If the vector is empty, true is returned."]
1235
    pure fn alli(f: fn(uint, T) -> bool) -> bool {
1236 1237
        alli(self, f)
    }
N
Niko Matsakis 已提交
1238
    #[doc = "
1239 1240
    Apply a function to each element of a vector and return a concatenation
    of each result vector
1241 1242
    "]
    #[inline]
1243
    pure fn flat_map<U>(f: fn(T) -> [U]) -> [U] { flat_map(self, f) }
1244 1245 1246 1247 1248 1249 1250
    #[doc = "
    Apply a function to each element of a vector and return the results

    If function `f` returns `none` then that element is excluded from
    the resulting vector.
    "]
    #[inline]
1251
    pure fn filter_map<U: copy>(f: fn(T) -> option<U>) -> [U] {
1252 1253
        filter_map(self, f)
    }
1254
}
1255

1256 1257 1258 1259 1260 1261 1262 1263 1264 1265
#[doc = "Extension methods for vectors"]
impl extensions/&<T: copy> for [T]/& {
    #[doc = "
    Construct a new vector from the elements of a vector for which some
    predicate holds.

    Apply function `f` to each element of `v` and return a vector containing
    only those elements for which `f` returned true.
    "]
    #[inline]
1266
    pure fn filter(f: fn(T) -> bool) -> [T] { filter(self, f) }
1267 1268 1269 1270 1271 1272 1273 1274
    #[doc = "
    Search for the first element that matches a given predicate

    Apply function `f` to each element of `v`, starting from the first.
    When function `f` returns true then an option containing the element
    is returned. If `f` matches no elements then none is returned.
    "]
    #[inline]
1275
    pure fn find(f: fn(T) -> bool) -> option<T> { find(self, f) }
1276 1277 1278 1279 1280 1281 1282 1283
    #[doc = "
    Search for the last element that matches a given predicate

    Apply function `f` to each element of `v` in reverse order. When function
    `f` returns true then an option containing the element is returned. If `f`
    matches no elements then none is returned.
    "]
    #[inline]
1284
    pure fn rfind(f: fn(T) -> bool) -> option<T> { rfind(self, f) }
1285 1286
}

B
Brian Anderson 已提交
1287
#[doc = "Unsafe operations"]
1288
mod unsafe {
T
Tim Chevalier 已提交
1289
    // FIXME: This should have crate visibility (#1893 blocks that)
B
Brian Anderson 已提交
1290
    #[doc = "The internal representation of a vector"]
1291 1292 1293 1294 1295 1296
    type vec_repr = {
        box_header: (uint, uint, uint, uint),
        mut fill: uint,
        mut alloc: uint,
        data: u8
    };
1297

B
Brian Anderson 已提交
1298
    #[doc = "
1299 1300
    Constructs a vector from an unsafe pointer to a buffer

B
Brian Anderson 已提交
1301
    # Arguments
1302

B
Brian Anderson 已提交
1303 1304 1305
    * ptr - An unsafe pointer to a buffer of `T`
    * elts - The number of elements in the buffer
    "]
1306
    #[inline(always)]
1307
    unsafe fn from_buf<T>(ptr: *T, elts: uint) -> [T] {
1308 1309 1310
        ret ::unsafe::reinterpret_cast(
            rustrt::vec_from_buf_shared(sys::get_type_desc::<T>(),
                                        ptr as *(),
1311
                                        elts as size_t));
1312 1313
    }

B
Brian Anderson 已提交
1314
    #[doc = "
1315 1316
    Sets the length of a vector

1317
    This will explicitly set the size of the vector, without actually
1318 1319
    modifing its buffers, so it is up to the caller to ensure that
    the vector is actually the specified size.
B
Brian Anderson 已提交
1320
    "]
1321
    #[inline(always)]
1322
    unsafe fn set_len<T>(&&v: [const T], new_len: uint) {
1323 1324 1325 1326
        let repr: **vec_repr = ::unsafe::reinterpret_cast(addr_of(v));
        (**repr).fill = new_len * sys::size_of::<T>();
    }

B
Brian Anderson 已提交
1327
    #[doc = "
1328 1329 1330 1331 1332 1333 1334
    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.
B
Brian Anderson 已提交
1335
    "]
1336
    #[inline(always)]
1337 1338 1339 1340
    unsafe fn to_ptr<T>(v: [const T]) -> *T {
        let repr: **vec_repr = ::unsafe::reinterpret_cast(addr_of(v));
        ret ::unsafe::reinterpret_cast(addr_of((**repr).data));
    }
1341 1342 1343 1344 1345 1346 1347 1348


    #[doc = "
    Form a slice from a pointer and length (as a number of units, not bytes).
    "]
    #[inline(always)]
    unsafe fn form_slice<T,U>(p: *T, len: uint, f: fn([T]/&) -> U) -> U {
        let pair = (p, len * sys::size_of::<T>());
T
Tim Chevalier 已提交
1349
        let v : *([T]/&blk) =
1350
            ::unsafe::reinterpret_cast(ptr::addr_of(pair));
1351 1352
        f(*v)
    }
1353 1354
}

B
Brian Anderson 已提交
1355
#[doc = "Operations on `[u8]`"]
1356 1357 1358 1359 1360
mod u8 {
    export cmp;
    export lt, le, eq, ne, ge, gt;
    export hash;

B
Brian Anderson 已提交
1361
    #[doc = "Bytewise string comparison"]
1362 1363 1364
    pure fn cmp(&&a: [u8], &&b: [u8]) -> int unsafe {
        let a_len = len(a);
        let b_len = len(b);
1365
        let n = uint::min(a_len, b_len) as libc::size_t;
1366 1367
        let r = libc::memcmp(unsafe::to_ptr(a) as *libc::c_void,
                             unsafe::to_ptr(b) as *libc::c_void, n) as int;
1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379

        if r != 0 { r } else {
            if a_len == b_len {
                0
            } else if a_len < b_len {
                -1
            } else {
                1
            }
        }
    }

B
Brian Anderson 已提交
1380
    #[doc = "Bytewise less than or equal"]
1381 1382
    pure fn lt(&&a: [u8], &&b: [u8]) -> bool { cmp(a, b) < 0 }

B
Brian Anderson 已提交
1383
    #[doc = "Bytewise less than or equal"]
1384 1385
    pure fn le(&&a: [u8], &&b: [u8]) -> bool { cmp(a, b) <= 0 }

B
Brian Anderson 已提交
1386
    #[doc = "Bytewise equality"]
1387 1388
    pure fn eq(&&a: [u8], &&b: [u8]) -> bool unsafe { cmp(a, b) == 0 }

B
Brian Anderson 已提交
1389
    #[doc = "Bytewise inequality"]
1390 1391
    pure fn ne(&&a: [u8], &&b: [u8]) -> bool unsafe { cmp(a, b) != 0 }

B
Brian Anderson 已提交
1392
    #[doc ="Bytewise greater than or equal"]
1393 1394
    pure fn ge(&&a: [u8], &&b: [u8]) -> bool { cmp(a, b) >= 0 }

B
Brian Anderson 已提交
1395
    #[doc = "Bytewise greater than"]
1396 1397
    pure fn gt(&&a: [u8], &&b: [u8]) -> bool { cmp(a, b) > 0 }

B
Brian Anderson 已提交
1398
    #[doc = "String hash function"]
1399
    fn hash(&&s: [u8]) -> uint {
T
Tim Chevalier 已提交
1400 1401 1402
        /* Seems to have been tragically copy/pasted from str.rs,
           or vice versa. But I couldn't figure out how to abstract
           it out. -- tjc */
1403

1404
        let mut u: uint = 5381u;
1405 1406 1407 1408 1409
        vec::iter(s, { |c| u *= 33u; u += c as uint; });
        ret u;
    }
}

1410 1411 1412 1413 1414
// ___________________________________________________________________________
// ITERATION TRAIT METHODS
//
// This cannot be used with iter-trait.rs because of the region pointer
// required in the slice.
1415
impl extensions/&<A> of iter::base_iter<A> for [const A]/& {
1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426
    fn each(blk: fn(A) -> bool) { each(self, blk) }
    fn size_hint() -> option<uint> { some(len(self)) }
    fn eachi(blk: fn(uint, A) -> bool) { iter::eachi(self, blk) }
    fn all(blk: fn(A) -> bool) -> bool { iter::all(self, blk) }
    fn any(blk: fn(A) -> bool) -> bool { iter::any(self, blk) }
    fn foldl<B>(+b0: B, blk: fn(B, A) -> B) -> B {
        iter::foldl(self, b0, blk)
    }
    fn contains(x: A) -> bool { iter::contains(self, x) }
    fn count(x: A) -> uint { iter::count(self, x) }
}
1427
impl extensions/&<A:copy> for [const A]/& {
1428 1429 1430 1431 1432 1433
    fn filter_to_vec(pred: fn(A) -> bool) -> [A] {
        iter::filter_to_vec(self, pred)
    }
    fn map_to_vec<B>(op: fn(A) -> B) -> [B] { iter::map_to_vec(self, op) }
    fn to_vec() -> [A] { iter::to_vec(self) }

T
Tim Chevalier 已提交
1434
    // FIXME--bug in resolve prevents this from working (#2611)
1435 1436 1437 1438 1439 1440 1441 1442 1443
    // fn flat_map_to_vec<B:copy,IB:base_iter<B>>(op: fn(A) -> IB) -> [B] {
    //     iter::flat_map_to_vec(self, op)
    // }

    fn min() -> A { iter::min(self) }
    fn max() -> A { iter::max(self) }
}
// ___________________________________________________________________________

1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456
#[cfg(test)]
mod tests {

    fn square(n: uint) -> uint { ret n * n; }

    fn square_ref(&&n: uint) -> uint { ret n * n; }

    pure fn is_three(&&n: uint) -> bool { ret n == 3u; }

    pure fn is_odd(&&n: uint) -> bool { ret n % 2u == 1u; }

    pure fn is_equal(&&x: uint, &&y:uint) -> bool { ret x == y; }

1457
    fn square_if_odd(&&n: uint) -> option<uint> {
1458 1459 1460 1461 1462 1463 1464 1465 1466
        ret if n % 2u == 1u { some(n * n) } else { none };
    }

    fn add(&&x: uint, &&y: uint) -> uint { ret x + y; }

    #[test]
    fn test_unsafe_ptrs() unsafe {
        // Test on-stack copy-from-buf.
        let a = [1, 2, 3];
1467
        let mut ptr = unsafe::to_ptr(a);
1468 1469 1470 1471 1472 1473 1474 1475
        let b = unsafe::from_buf(ptr, 3u);
        assert (len(b) == 3u);
        assert (b[0] == 1);
        assert (b[1] == 2);
        assert (b[2] == 3);

        // Test on-heap copy-from-buf.
        let c = [1, 2, 3, 4, 5];
1476
        ptr = unsafe::to_ptr(c);
1477 1478 1479 1480 1481 1482 1483 1484 1485 1486
        let d = unsafe::from_buf(ptr, 5u);
        assert (len(d) == 5u);
        assert (d[0] == 1);
        assert (d[1] == 2);
        assert (d[2] == 3);
        assert (d[3] == 4);
        assert (d[4] == 5);
    }

    #[test]
1487 1488
    fn test_from_fn() {
        // Test on-stack from_fn.
1489
        let mut v = from_fn(3u, square);
1490 1491 1492 1493 1494
        assert (len(v) == 3u);
        assert (v[0] == 0u);
        assert (v[1] == 1u);
        assert (v[2] == 4u);

1495 1496
        // Test on-heap from_fn.
        v = from_fn(5u, square);
1497 1498 1499 1500 1501 1502 1503 1504 1505
        assert (len(v) == 5u);
        assert (v[0] == 0u);
        assert (v[1] == 1u);
        assert (v[2] == 4u);
        assert (v[3] == 9u);
        assert (v[4] == 16u);
    }

    #[test]
1506 1507
    fn test_from_elem() {
        // Test on-stack from_elem.
1508
        let mut v = from_elem(2u, 10u);
1509 1510 1511 1512
        assert (len(v) == 2u);
        assert (v[0] == 10u);
        assert (v[1] == 10u);

1513 1514
        // Test on-heap from_elem.
        v = from_elem(6u, 20u);
1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542
        assert (v[0] == 20u);
        assert (v[1] == 20u);
        assert (v[2] == 20u);
        assert (v[3] == 20u);
        assert (v[4] == 20u);
        assert (v[5] == 20u);
    }

    #[test]
    fn test_is_empty() {
        assert (is_empty::<int>([]));
        assert (!is_empty([0]));
    }

    #[test]
    fn test_is_not_empty() {
        assert (is_not_empty([0]));
        assert (!is_not_empty::<int>([]));
    }

    #[test]
    fn test_head() {
        let a = [11, 12];
        assert (head(a) == 11);
    }

    #[test]
    fn test_tail() {
1543
        let mut a = [11];
1544 1545 1546 1547 1548 1549 1550 1551
        assert (tail(a) == []);

        a = [11, 12];
        assert (tail(a) == [12]);
    }

    #[test]
    fn test_last() {
1552
        let mut n = last_opt([]);
1553
        assert (n == none);
1554
        n = last_opt([1, 2, 3]);
1555
        assert (n == some(3));
1556
        n = last_opt([1, 2, 3, 4, 5]);
1557 1558 1559 1560 1561 1562
        assert (n == some(5));
    }

    #[test]
    fn test_slice() {
        // Test on-stack -> on-stack slice.
1563
        let mut v = slice([1, 2, 3], 1u, 3u);
1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587
        assert (len(v) == 2u);
        assert (v[0] == 2);
        assert (v[1] == 3);

        // Test on-heap -> on-stack slice.
        v = slice([1, 2, 3, 4, 5], 0u, 3u);
        assert (len(v) == 3u);
        assert (v[0] == 1);
        assert (v[1] == 2);
        assert (v[2] == 3);

        // Test on-heap -> on-heap slice.
        v = slice([1, 2, 3, 4, 5, 6], 1u, 6u);
        assert (len(v) == 5u);
        assert (v[0] == 2);
        assert (v[1] == 3);
        assert (v[2] == 4);
        assert (v[3] == 5);
        assert (v[4] == 6);
    }

    #[test]
    fn test_pop() {
        // Test on-stack pop.
1588 1589
        let mut v = [1, 2, 3];
        let mut e = pop(v);
1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608
        assert (len(v) == 2u);
        assert (v[0] == 1);
        assert (v[1] == 2);
        assert (e == 3);

        // Test on-heap pop.
        v = [1, 2, 3, 4, 5];
        e = pop(v);
        assert (len(v) == 4u);
        assert (v[0] == 1);
        assert (v[1] == 2);
        assert (v[2] == 3);
        assert (v[3] == 4);
        assert (e == 5);
    }

    #[test]
    fn test_push() {
        // Test on-stack push().
1609
        let mut v = [];
1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623
        push(v, 1);
        assert (len(v) == 1u);
        assert (v[0] == 1);

        // Test on-heap push().
        push(v, 2);
        assert (len(v) == 2u);
        assert (v[0] == 1);
        assert (v[1] == 2);
    }

    #[test]
    fn test_grow() {
        // Test on-stack grow().
1624
        let mut v = [];
1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641
        grow(v, 2u, 1);
        assert (len(v) == 2u);
        assert (v[0] == 1);
        assert (v[1] == 1);

        // Test on-heap grow().
        grow(v, 3u, 2);
        assert (len(v) == 5u);
        assert (v[0] == 1);
        assert (v[1] == 1);
        assert (v[2] == 2);
        assert (v[3] == 2);
        assert (v[4] == 2);
    }

    #[test]
    fn test_grow_fn() {
1642
        let mut v = [];
1643 1644 1645 1646 1647 1648 1649 1650 1651
        grow_fn(v, 3u, square);
        assert (len(v) == 3u);
        assert (v[0] == 0u);
        assert (v[1] == 1u);
        assert (v[2] == 4u);
    }

    #[test]
    fn test_grow_set() {
G
Graydon Hoare 已提交
1652
        let mut v = [mut 1, 2, 3];
1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664
        grow_set(v, 4u, 4, 5);
        assert (len(v) == 5u);
        assert (v[0] == 1);
        assert (v[1] == 2);
        assert (v[2] == 3);
        assert (v[3] == 4);
        assert (v[4] == 5);
    }

    #[test]
    fn test_map() {
        // Test on-stack map.
1665 1666
        let mut v = [1u, 2u, 3u];
        let mut w = map(v, square_ref);
1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689
        assert (len(w) == 3u);
        assert (w[0] == 1u);
        assert (w[1] == 4u);
        assert (w[2] == 9u);

        // Test on-heap map.
        v = [1u, 2u, 3u, 4u, 5u];
        w = map(v, square_ref);
        assert (len(w) == 5u);
        assert (w[0] == 1u);
        assert (w[1] == 4u);
        assert (w[2] == 9u);
        assert (w[3] == 16u);
        assert (w[4] == 25u);
    }

    #[test]
    fn test_map2() {
        fn times(&&x: int, &&y: int) -> int { ret x * y; }
        let f = times;
        let v0 = [1, 2, 3, 4, 5];
        let v1 = [5, 4, 3, 2, 1];
        let u = map2::<int, int, int>(v0, v1, f);
1690
        let mut i = 0;
1691 1692 1693 1694 1695 1696
        while i < 5 { assert (v0[i] * v1[i] == u[i]); i += 1; }
    }

    #[test]
    fn test_filter_map() {
        // Test on-stack filter-map.
1697 1698
        let mut v = [1u, 2u, 3u];
        let mut w = filter_map(v, square_if_odd);
1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710
        assert (len(w) == 2u);
        assert (w[0] == 1u);
        assert (w[1] == 9u);

        // Test on-heap filter-map.
        v = [1u, 2u, 3u, 4u, 5u];
        w = filter_map(v, square_if_odd);
        assert (len(w) == 3u);
        assert (w[0] == 1u);
        assert (w[1] == 9u);
        assert (w[2] == 25u);

1711
        fn halve(&&i: int) -> option<int> {
1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736
            if i % 2 == 0 {
                ret option::some::<int>(i / 2);
            } else { ret option::none::<int>; }
        }
        fn halve_for_sure(&&i: int) -> int { ret i / 2; }
        let all_even: [int] = [0, 2, 8, 6];
        let all_odd1: [int] = [1, 7, 3];
        let all_odd2: [int] = [];
        let mix: [int] = [9, 2, 6, 7, 1, 0, 0, 3];
        let mix_dest: [int] = [1, 3, 0, 0];
        assert (filter_map(all_even, halve) == map(all_even, halve_for_sure));
        assert (filter_map(all_odd1, halve) == []);
        assert (filter_map(all_odd2, halve) == []);
        assert (filter_map(mix, halve) == mix_dest);
    }

    #[test]
    fn test_filter() {
        assert filter([1u, 2u, 3u], is_odd) == [1u, 3u];
        assert filter([1u, 2u, 4u, 8u, 16u], is_three) == [];
    }

    #[test]
    fn test_foldl() {
        // Test on-stack fold.
1737 1738
        let mut v = [1u, 2u, 3u];
        let mut sum = foldl(0u, v, add);
1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751
        assert (sum == 6u);

        // Test on-heap fold.
        v = [1u, 2u, 3u, 4u, 5u];
        sum = foldl(0u, v, add);
        assert (sum == 15u);
    }

    #[test]
    fn test_foldl2() {
        fn sub(&&a: int, &&b: int) -> int {
            a - b
        }
1752
        let mut v = [1, 2, 3, 4];
1753 1754 1755 1756 1757 1758 1759 1760 1761
        let sum = foldl(0, v, sub);
        assert sum == -10;
    }

    #[test]
    fn test_foldr() {
        fn sub(&&a: int, &&b: int) -> int {
            a - b
        }
1762
        let mut v = [1, 2, 3, 4];
1763 1764 1765 1766 1767 1768
        let sum = foldr(v, 0, sub);
        assert sum == -2;
    }

    #[test]
    fn test_iter_empty() {
1769
        let mut i = 0;
1770 1771 1772 1773 1774 1775
        iter::<int>([], { |_v| i += 1 });
        assert i == 0;
    }

    #[test]
    fn test_iter_nonempty() {
1776
        let mut i = 0;
1777 1778 1779 1780 1781 1782
        iter([1, 2, 3], { |v| i += v });
        assert i == 6;
    }

    #[test]
    fn test_iteri() {
1783
        let mut i = 0;
1784 1785 1786 1787 1788 1789 1790 1791 1792 1793
        iteri([1, 2, 3], { |j, v|
            if i == 0 { assert v == 1; }
            assert j + 1u == v as uint;
            i += v;
        });
        assert i == 6;
    }

    #[test]
    fn test_riter_empty() {
1794
        let mut i = 0;
1795 1796 1797 1798 1799 1800
        riter::<int>([], { |_v| i += 1 });
        assert i == 0;
    }

    #[test]
    fn test_riter_nonempty() {
1801
        let mut i = 0;
1802 1803 1804 1805 1806 1807 1808 1809 1810
        riter([1, 2, 3], { |v|
            if i == 0 { assert v == 3; }
            i += v
        });
        assert i == 6;
    }

    #[test]
    fn test_riteri() {
1811
        let mut i = 0;
1812 1813 1814 1815 1816 1817 1818 1819 1820 1821
        riteri([0, 1, 2], { |j, v|
            if i == 0 { assert v == 2; }
            assert j == v as uint;
            i += v;
        });
        assert i == 3;
    }

    #[test]
    fn test_permute() {
1822
        let mut results: [[int]];
1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886

        results = [];
        permute([]) {|v| results += [v]; }
        assert results == [[]];

        results = [];
        permute([7]) {|v| results += [v]; }
        assert results == [[7]];

        results = [];
        permute([1,1]) {|v| results += [v]; }
        assert results == [[1,1],[1,1]];

        results = [];
        permute([5,2,0]) {|v| results += [v]; }
        assert results == [[5,2,0],[5,0,2],[2,5,0],[2,0,5],[0,5,2],[0,2,5]];
    }

    #[test]
    fn test_any_and_all() {
        assert (any([1u, 2u, 3u], is_three));
        assert (!any([0u, 1u, 2u], is_three));
        assert (any([1u, 2u, 3u, 4u, 5u], is_three));
        assert (!any([1u, 2u, 4u, 5u, 6u], is_three));

        assert (all([3u, 3u, 3u], is_three));
        assert (!all([3u, 3u, 2u], is_three));
        assert (all([3u, 3u, 3u, 3u, 3u], is_three));
        assert (!all([3u, 3u, 0u, 1u, 2u], is_three));
    }

    #[test]
    fn test_any2_and_all2() {

        assert (any2([2u, 4u, 6u], [2u, 4u, 6u], is_equal));
        assert (any2([1u, 2u, 3u], [4u, 5u, 3u], is_equal));
        assert (!any2([1u, 2u, 3u], [4u, 5u, 6u], is_equal));
        assert (any2([2u, 4u, 6u], [2u, 4u], is_equal));

        assert (all2([2u, 4u, 6u], [2u, 4u, 6u], is_equal));
        assert (!all2([1u, 2u, 3u], [4u, 5u, 3u], is_equal));
        assert (!all2([1u, 2u, 3u], [4u, 5u, 6u], is_equal));
        assert (!all2([2u, 4u, 6u], [2u, 4u], is_equal));
    }

    #[test]
    fn test_zip_unzip() {
        let v1 = [1, 2, 3];
        let v2 = [4, 5, 6];

        let z1 = zip(v1, v2);

        assert ((1, 4) == z1[0]);
        assert ((2, 5) == z1[1]);
        assert ((3, 6) == z1[2]);

        let (left, right) = unzip(z1);

        assert ((1, 4) == (left[0], right[0]));
        assert ((2, 5) == (left[1], right[1]));
        assert ((3, 6) == (left[2], right[2]));
    }

    #[test]
1887 1888
    fn test_position_elem() {
        assert position_elem([], 1) == none;
1889 1890

        let v1 = [1, 2, 3, 3, 2, 5];
1891 1892 1893 1894
        assert position_elem(v1, 1) == some(0u);
        assert position_elem(v1, 2) == some(1u);
        assert position_elem(v1, 5) == some(5u);
        assert position_elem(v1, 4) == none;
1895 1896 1897
    }

    #[test]
1898
    fn test_position() {
1899 1900
        fn less_than_three(&&i: int) -> bool { ret i < 3; }
        fn is_eighteen(&&i: int) -> bool { ret i == 18; }
1901 1902 1903 1904 1905 1906

        assert position([], less_than_three) == none;

        let v1 = [5, 4, 3, 2, 1];
        assert position(v1, less_than_three) == some(3u);
        assert position(v1, is_eighteen) == none;
1907 1908 1909
    }

    #[test]
1910 1911
    fn test_position_between() {
        assert position_between([], 0u, 0u, f) == none;
1912 1913

        fn f(xy: (int, char)) -> bool { let (_x, y) = xy; y == 'b' }
1914
        let mut v = [(0, 'a'), (1, 'b'), (2, 'c'), (3, 'b')];
1915

1916 1917 1918 1919 1920
        assert position_between(v, 0u, 0u, f) == none;
        assert position_between(v, 0u, 1u, f) == none;
        assert position_between(v, 0u, 2u, f) == some(1u);
        assert position_between(v, 0u, 3u, f) == some(1u);
        assert position_between(v, 0u, 4u, f) == some(1u);
1921

1922 1923 1924 1925
        assert position_between(v, 1u, 1u, f) == none;
        assert position_between(v, 1u, 2u, f) == some(1u);
        assert position_between(v, 1u, 3u, f) == some(1u);
        assert position_between(v, 1u, 4u, f) == some(1u);
1926

1927 1928 1929
        assert position_between(v, 2u, 2u, f) == none;
        assert position_between(v, 2u, 3u, f) == none;
        assert position_between(v, 2u, 4u, f) == some(3u);
1930

1931 1932
        assert position_between(v, 3u, 3u, f) == none;
        assert position_between(v, 3u, 4u, f) == some(3u);
1933

1934
        assert position_between(v, 4u, 4u, f) == none;
1935 1936
    }

1937 1938 1939 1940 1941 1942
    #[test]
    fn test_find() {
        assert find([], f) == none;

        fn f(xy: (int, char)) -> bool { let (_x, y) = xy; y == 'b' }
        fn g(xy: (int, char)) -> bool { let (_x, y) = xy; y == 'd' }
1943
        let mut v = [(0, 'a'), (1, 'b'), (2, 'c'), (3, 'b')];
1944 1945 1946 1947 1948 1949

        assert find(v, f) == some((1, 'b'));
        assert find(v, g) == none;
    }

    #[test]
1950 1951
    fn test_find_between() {
        assert find_between([], 0u, 0u, f) == none;
1952 1953

        fn f(xy: (int, char)) -> bool { let (_x, y) = xy; y == 'b' }
1954
        let mut v = [(0, 'a'), (1, 'b'), (2, 'c'), (3, 'b')];
1955

1956 1957 1958 1959 1960
        assert find_between(v, 0u, 0u, f) == none;
        assert find_between(v, 0u, 1u, f) == none;
        assert find_between(v, 0u, 2u, f) == some((1, 'b'));
        assert find_between(v, 0u, 3u, f) == some((1, 'b'));
        assert find_between(v, 0u, 4u, f) == some((1, 'b'));
1961

1962 1963 1964 1965
        assert find_between(v, 1u, 1u, f) == none;
        assert find_between(v, 1u, 2u, f) == some((1, 'b'));
        assert find_between(v, 1u, 3u, f) == some((1, 'b'));
        assert find_between(v, 1u, 4u, f) == some((1, 'b'));
1966

1967 1968 1969
        assert find_between(v, 2u, 2u, f) == none;
        assert find_between(v, 2u, 3u, f) == none;
        assert find_between(v, 2u, 4u, f) == some((3, 'b'));
1970

1971 1972
        assert find_between(v, 3u, 3u, f) == none;
        assert find_between(v, 3u, 4u, f) == some((3, 'b'));
1973

1974
        assert find_between(v, 4u, 4u, f) == none;
1975 1976
    }

1977 1978 1979 1980 1981 1982
    #[test]
    fn test_rposition() {
        assert find([], f) == none;

        fn f(xy: (int, char)) -> bool { let (_x, y) = xy; y == 'b' }
        fn g(xy: (int, char)) -> bool { let (_x, y) = xy; y == 'd' }
1983
        let mut v = [(0, 'a'), (1, 'b'), (2, 'c'), (3, 'b')];
1984 1985 1986 1987 1988 1989

        assert position(v, f) == some(1u);
        assert position(v, g) == none;
    }

    #[test]
1990 1991
    fn test_rposition_between() {
        assert rposition_between([], 0u, 0u, f) == none;
1992 1993

        fn f(xy: (int, char)) -> bool { let (_x, y) = xy; y == 'b' }
1994
        let mut v = [(0, 'a'), (1, 'b'), (2, 'c'), (3, 'b')];
1995

1996 1997 1998 1999 2000
        assert rposition_between(v, 0u, 0u, f) == none;
        assert rposition_between(v, 0u, 1u, f) == none;
        assert rposition_between(v, 0u, 2u, f) == some(1u);
        assert rposition_between(v, 0u, 3u, f) == some(1u);
        assert rposition_between(v, 0u, 4u, f) == some(3u);
2001

2002 2003 2004 2005
        assert rposition_between(v, 1u, 1u, f) == none;
        assert rposition_between(v, 1u, 2u, f) == some(1u);
        assert rposition_between(v, 1u, 3u, f) == some(1u);
        assert rposition_between(v, 1u, 4u, f) == some(3u);
2006

2007 2008 2009
        assert rposition_between(v, 2u, 2u, f) == none;
        assert rposition_between(v, 2u, 3u, f) == none;
        assert rposition_between(v, 2u, 4u, f) == some(3u);
2010

2011 2012
        assert rposition_between(v, 3u, 3u, f) == none;
        assert rposition_between(v, 3u, 4u, f) == some(3u);
2013

2014
        assert rposition_between(v, 4u, 4u, f) == none;
2015
    }
2016 2017 2018 2019 2020 2021 2022

    #[test]
    fn test_rfind() {
        assert rfind([], f) == none;

        fn f(xy: (int, char)) -> bool { let (_x, y) = xy; y == 'b' }
        fn g(xy: (int, char)) -> bool { let (_x, y) = xy; y == 'd' }
2023
        let mut v = [(0, 'a'), (1, 'b'), (2, 'c'), (3, 'b')];
2024 2025 2026 2027 2028 2029

        assert rfind(v, f) == some((3, 'b'));
        assert rfind(v, g) == none;
    }

    #[test]
2030 2031
    fn test_rfind_between() {
        assert rfind_between([], 0u, 0u, f) == none;
2032 2033

        fn f(xy: (int, char)) -> bool { let (_x, y) = xy; y == 'b' }
2034
        let mut v = [(0, 'a'), (1, 'b'), (2, 'c'), (3, 'b')];
2035

2036 2037 2038 2039 2040
        assert rfind_between(v, 0u, 0u, f) == none;
        assert rfind_between(v, 0u, 1u, f) == none;
        assert rfind_between(v, 0u, 2u, f) == some((1, 'b'));
        assert rfind_between(v, 0u, 3u, f) == some((1, 'b'));
        assert rfind_between(v, 0u, 4u, f) == some((3, 'b'));
2041

2042 2043 2044 2045
        assert rfind_between(v, 1u, 1u, f) == none;
        assert rfind_between(v, 1u, 2u, f) == some((1, 'b'));
        assert rfind_between(v, 1u, 3u, f) == some((1, 'b'));
        assert rfind_between(v, 1u, 4u, f) == some((3, 'b'));
2046

2047 2048 2049
        assert rfind_between(v, 2u, 2u, f) == none;
        assert rfind_between(v, 2u, 3u, f) == none;
        assert rfind_between(v, 2u, 4u, f) == some((3, 'b'));
2050

2051 2052
        assert rfind_between(v, 3u, 3u, f) == none;
        assert rfind_between(v, 3u, 4u, f) == some((3, 'b'));
2053

2054
        assert rfind_between(v, 4u, 4u, f) == none;
2055 2056 2057 2058
    }

    #[test]
    fn reverse_and_reversed() {
G
Graydon Hoare 已提交
2059
        let v: [mut int] = [mut 10, 20];
2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073
        assert (v[0] == 10);
        assert (v[1] == 20);
        reverse(v);
        assert (v[0] == 20);
        assert (v[1] == 10);
        let v2 = reversed::<int>([10, 20]);
        assert (v2[0] == 20);
        assert (v2[1] == 10);
        v[0] = 30;
        assert (v2[0] == 20);
        // Make sure they work with 0-length vectors too.

        let v4 = reversed::<int>([]);
        assert (v4 == []);
G
Graydon Hoare 已提交
2074
        let v3: [mut int] = [mut];
2075 2076 2077 2078 2079
        reverse::<int>(v3);
    }

    #[test]
    fn reversed_mut() {
G
Graydon Hoare 已提交
2080
        let v2 = reversed::<int>([mut 10, 20]);
2081 2082 2083 2084 2085 2086 2087 2088 2089 2090
        assert (v2[0] == 20);
        assert (v2[1] == 10);
    }

    #[test]
    fn test_init() {
        let v = init([1, 2, 3]);
        assert v == [1, 2];
    }

2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132
    #[test]
    fn test_split() {
        fn f(&&x: int) -> bool { x == 3 }

        assert split([], f) == [];
        assert split([1, 2], f) == [[1, 2]];
        assert split([3, 1, 2], f) == [[], [1, 2]];
        assert split([1, 2, 3], f) == [[1, 2], []];
        assert split([1, 2, 3, 4, 3, 5], f) == [[1, 2], [4], [5]];
    }

    #[test]
    fn test_splitn() {
        fn f(&&x: int) -> bool { x == 3 }

        assert splitn([], 1u, f) == [];
        assert splitn([1, 2], 1u, f) == [[1, 2]];
        assert splitn([3, 1, 2], 1u, f) == [[], [1, 2]];
        assert splitn([1, 2, 3], 1u, f) == [[1, 2], []];
        assert splitn([1, 2, 3, 4, 3, 5], 1u, f) == [[1, 2], [4, 3, 5]];
    }

    #[test]
    fn test_rsplit() {
        fn f(&&x: int) -> bool { x == 3 }

        assert rsplit([], f) == [];
        assert rsplit([1, 2], f) == [[1, 2]];
        assert rsplit([1, 2, 3], f) == [[1, 2], []];
        assert rsplit([1, 2, 3, 4, 3, 5], f) == [[1, 2], [4], [5]];
    }

    #[test]
    fn test_rsplitn() {
        fn f(&&x: int) -> bool { x == 3 }

        assert rsplitn([], 1u, f) == [];
        assert rsplitn([1, 2], 1u, f) == [[1, 2]];
        assert rsplitn([1, 2, 3], 1u, f) == [[1, 2], []];
        assert rsplitn([1, 2, 3, 4, 3, 5], 1u, f) == [[1, 2, 3, 4], [5]];
    }

2133
    #[test]
B
Brian Anderson 已提交
2134
    #[should_fail]
2135
    #[ignore(cfg(windows))]
2136
    fn test_init_empty() {
B
Brian Anderson 已提交
2137
        init::<int>([]);
2138 2139 2140 2141 2142 2143 2144
    }

    #[test]
    fn test_concat() {
        assert concat([[1], [2,3]]) == [1, 2, 3];
    }

2145 2146 2147 2148 2149 2150 2151
    #[test]
    fn test_connect() {
        assert connect([], 0) == [];
        assert connect([[1], [2, 3]], 0) == [1, 0, 2, 3];
        assert connect([[1], [2], [3]], 0) == [1, 0, 2, 0, 3];
    }

2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164
    #[test]
    fn test_windowed () {
        assert [[1u,2u,3u],[2u,3u,4u],[3u,4u,5u],[4u,5u,6u]]
              == windowed (3u, [1u,2u,3u,4u,5u,6u]);

        assert [[1u,2u,3u,4u],[2u,3u,4u,5u],[3u,4u,5u,6u]]
              == windowed (4u, [1u,2u,3u,4u,5u,6u]);

        assert [] == windowed (7u, [1u,2u,3u,4u,5u,6u]);
    }

    #[test]
    #[should_fail]
2165
    #[ignore(cfg(windows))]
2166 2167 2168
    fn test_windowed_() {
        let _x = windowed (0u, [1u,2u,3u,4u,5u,6u]);
    }
2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186

    #[test]
    fn to_mut_no_copy() unsafe {
        let x = [1, 2, 3];
        let addr = unsafe::to_ptr(x);
        let x_mut = to_mut(x);
        let addr_mut = unsafe::to_ptr(x_mut);
        assert addr == addr_mut;
    }

    #[test]
    fn from_mut_no_copy() unsafe {
        let x = [mut 1, 2, 3];
        let addr = unsafe::to_ptr(x);
        let x_imm = from_mut(x);
        let addr_imm = unsafe::to_ptr(x_imm);
        assert addr == addr_imm;
    }
B
Brian Anderson 已提交
2187 2188 2189

    #[test]
    fn test_unshift() {
2190
        let mut x = [1, 2, 3];
B
Brian Anderson 已提交
2191 2192 2193
        unshift(x, 0);
        assert x == [0, 1, 2, 3];
    }
B
Brian Anderson 已提交
2194 2195 2196 2197 2198 2199 2200 2201 2202 2203

    #[test]
    fn test_capacity() {
        let mut v = [0u64];
        reserve(v, 10u);
        assert capacity(v) == 10u;
        let mut v = [0u32];
        reserve(v, 10u);
        assert capacity(v) == 10u;
    }
2204 2205 2206 2207 2208 2209 2210 2211 2212

    #[test]
    fn test_view() {
        let v = [1, 2, 3, 4, 5];
        let v = view(v, 1u, 3u);
        assert(len(v) == 2u);
        assert(v[0] == 2);
        assert(v[1] == 3);
    }
2213 2214
}

2215 2216 2217 2218 2219 2220 2221
// Local Variables:
// mode: rust;
// fill-column: 78;
// indent-tabs-mode: nil
// c-basic-offset: 4
// buffer-file-coding-system: utf-8-unix
// End: