vec.rs 44.8 KB
Newer Older
1 2 3 4
import option::{some, none};
import uint::next_power_of_two;
import ptr::addr_of;

5 6 7 8 9 10 11 12 13 14 15 16
export init_op;
export is_empty;
export is_not_empty;
export same_length;
export reserve;
export len;
export init_fn;
export init_elt;
export to_mut;
export from_mut;
export head;
export tail;
17
export tailn;
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
export init;
export last;
export last_opt;
export slice;
export split;
export splitn;
export rsplit;
export rsplitn;
export shift;
export pop;
export push;
export grow;
export grow_fn;
export grow_set;
export map;
export map2;
export filter_map;
export filter;
export concat;
export connect;
export foldl;
export foldr;
export any;
export any2;
export all;
export all2;
export contains;
export count;
export find;
export find_from;
export rfind;
export rfind_from;
export position_elt;
export position;
export position_from;
export position_elt;
export rposition;
export rposition_from;
export unzip;
export zip;
export swap;
export reverse;
export reversed;
export iter;
export iter2;
export iteri;
export riter;
export riteri;
export permute;
export windowed;
export as_buf;
export as_mut_buf;
export vec_len;
export unsafe;
export u8;

74 75
#[abi = "rust-intrinsic"]
native mod rusti {
76
    fn vec_len<T>(&&v: [const T]) -> libc::size_t;
77 78 79 80 81 82
}

#[abi = "cdecl"]
native mod rustrt {
    fn vec_reserve_shared<T>(t: *sys::type_desc,
                             &v: [const T],
83
                             n: libc::size_t);
84 85
    fn vec_from_buf_shared<T>(t: *sys::type_desc,
                              ptr: *T,
86
                              count: libc::size_t) -> [T];
87 88
}

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

B
Brian Anderson 已提交
92
#[doc = "Returns true if a vector contains no elements"]
93 94 95 96 97 98
pure fn is_empty<T>(v: [const T]) -> bool {
    // FIXME: This would be easier if we could just call len
    for t: T in v { ret false; }
    ret true;
}

B
Brian Anderson 已提交
99
#[doc = "Returns true if a vector contains some elements"]
100 101
pure fn is_not_empty<T>(v: [const T]) -> bool { ret !is_empty(v); }

B
Brian Anderson 已提交
102
#[doc = "Returns true if two vectors have the same length"]
103
pure fn same_length<T, U>(xs: [const T], ys: [const U]) -> bool {
104 105 106
    vec::len(xs) == vec::len(ys)
}

B
Brian Anderson 已提交
107
#[doc = "
108 109 110 111 112
Reserves capacity for `n` elements in the given vector.

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

B
Brian Anderson 已提交
113
# Arguments
114

B
Brian Anderson 已提交
115 116 117
* v - A vector
* n - The number of elements to reserve space for
"]
118 119 120 121
fn reserve<T>(&v: [const T], n: uint) {
    rustrt::vec_reserve_shared(sys::get_type_desc::<T>(), v, n);
}

B
Brian Anderson 已提交
122
#[doc = "Returns the length of a vector"]
123
#[inline(always)]
124 125
pure fn len<T>(v: [const T]) -> uint { unchecked { rusti::vec_len(v) } }

B
Brian Anderson 已提交
126
#[doc = "
127 128 129 130
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 已提交
131
"]
132
fn init_fn<T>(n_elts: uint, op: init_op<T>) -> [T] {
133
    let mut v = [];
134
    reserve(v, n_elts);
135
    let mut i: uint = 0u;
136 137 138 139
    while i < n_elts { v += [op(i)]; i += 1u; }
    ret v;
}

B
Brian Anderson 已提交
140
#[doc = "
141 142 143 144
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 已提交
145
"]
146
fn init_elt<T: copy>(n_elts: uint, t: T) -> [T] {
147
    let mut v = [];
148
    reserve(v, n_elts);
149
    let mut i: uint = 0u;
150 151 152 153 154 155
    while i < n_elts { v += [t]; i += 1u; }
    ret v;
}

// FIXME: Possible typestate postcondition:
// len(result) == len(v) (needs issue #586)
B
Brian Anderson 已提交
156
#[doc = "Produces a mutable vector from an immutable vector."]
M
Marijn Haverbeke 已提交
157 158 159 160
fn to_mut<T>(+v: [T]) -> [mutable T] unsafe {
    let r = ::unsafe::reinterpret_cast(v);
    ::unsafe::leak(v);
    r
161 162
}

B
Brian Anderson 已提交
163
#[doc = "Produces an immutable vector from a mutable vector."]
M
Marijn Haverbeke 已提交
164 165 166 167
fn from_mut<T>(+v: [mutable T]) -> [T] unsafe {
    let r = ::unsafe::reinterpret_cast(v);
    ::unsafe::leak(v);
    r
168 169 170 171
}

// Accessors

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

B
Brian Anderson 已提交
175
#[doc = "Returns all but the first element of a vector"]
176
fn tail<T: copy>(v: [const T]) -> [T] {
177 178 179
    ret slice(v, 1u, len(v));
}

B
Brian Anderson 已提交
180
#[doc = "Returns all but the first `n` elements of a vector"]
181
fn tailn<T: copy>(v: [const T], n: uint) -> [T] {
182 183 184
    slice(v, n, len(v))
}

185 186 187
// FIXME: This name is sort of confusing next to init_fn, etc
// but this is the name haskell uses for this function,
// along with head/tail/last.
B
Brian Anderson 已提交
188
#[doc = "Returns all but the last elemnt of a vector"]
189
fn init<T: copy>(v: [const T]) -> [T] {
190 191 192 193
    assert len(v) != 0u;
    slice(v, 0u, len(v) - 1u)
}

B
Brian Anderson 已提交
194
#[doc = "
195
Returns the last element of a `v`, failing if the vector is empty.
B
Brian Anderson 已提交
196
"]
197 198 199
pure fn last<T: copy>(v: [const T]) -> T {
    if len(v) == 0u { fail "last_unsafe: empty vector" }
    v[len(v) - 1u]
200 201
}

B
Brian Anderson 已提交
202
#[doc = "
203 204
Returns some(x) where `x` is the last element of a vector `v`,
or none if the vector is empty.
B
Brian Anderson 已提交
205
"]
206
pure fn last_opt<T: copy>(v: [const T]) -> option<T> {
B
Brian Anderson 已提交
207
   if len(v) == 0u { ret none; }
208
    some(v[len(v) - 1u])
T
Tim Chevalier 已提交
209
}
210

B
Brian Anderson 已提交
211
#[doc = "Returns a copy of the elements from [`start`..`end`) from `v`."]
212
fn slice<T: copy>(v: [const T], start: uint, end: uint) -> [T] {
213 214
    assert (start <= end);
    assert (end <= len(v));
215
    let mut result = [];
216
    reserve(result, end - start);
217
    let mut i = start;
218 219 220 221
    while i < end { result += [v[i]]; i += 1u; }
    ret result;
}

B
Brian Anderson 已提交
222
#[doc = "
223
Split the vector `v` by applying each element against the predicate `f`.
B
Brian Anderson 已提交
224
"]
225
fn split<T: copy>(v: [const T], f: fn(T) -> bool) -> [[T]] {
226 227 228
    let ln = len(v);
    if (ln == 0u) { ret [] }

229 230
    let mut start = 0u;
    let mut result = [];
231 232 233 234 235 236 237 238 239 240 241 242 243
    while start < ln {
        alt position_from(v, start, ln, f) {
          none { break }
          some(i) {
            push(result, slice(v, start, i));
            start = i + 1u;
          }
        }
    }
    push(result, slice(v, start, ln));
    result
}

B
Brian Anderson 已提交
244
#[doc = "
245 246
Split the vector `v` by applying each element against the predicate `f` up
to `n` times.
B
Brian Anderson 已提交
247
"]
248
fn splitn<T: copy>(v: [const T], n: uint, f: fn(T) -> bool) -> [[T]] {
249 250 251
    let ln = len(v);
    if (ln == 0u) { ret [] }

252 253 254
    let mut start = 0u;
    let mut count = n;
    let mut result = [];
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269
    while start < ln && count > 0u {
        alt position_from(v, start, ln, f) {
          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 已提交
270
#[doc = "
271 272
Reverse split the vector `v` by applying each element against the predicate
`f`.
B
Brian Anderson 已提交
273
"]
274
fn rsplit<T: copy>(v: [const T], f: fn(T) -> bool) -> [[T]] {
275 276 277
    let ln = len(v);
    if (ln == 0u) { ret [] }

278 279
    let mut end = ln;
    let mut result = [];
280 281 282 283 284 285 286 287 288 289 290 291 292
    while end > 0u {
        alt rposition_from(v, 0u, end, f) {
          none { break }
          some(i) {
            push(result, slice(v, i + 1u, end));
            end = i;
          }
        }
    }
    push(result, slice(v, 0u, end));
    reversed(result)
}

B
Brian Anderson 已提交
293
#[doc = "
294 295
Reverse split the vector `v` by applying each element against the predicate
`f` up to `n times.
B
Brian Anderson 已提交
296
"]
297
fn rsplitn<T: copy>(v: [const T], n: uint, f: fn(T) -> bool) -> [[T]] {
298 299 300
    let ln = len(v);
    if (ln == 0u) { ret [] }

301 302 303
    let mut end = ln;
    let mut count = n;
    let mut result = [];
304 305 306 307 308 309 310 311 312 313 314 315 316 317
    while end > 0u && count > 0u {
        alt rposition_from(v, 0u, end, f) {
          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)
}
318 319 320

// Mutators

B
Brian Anderson 已提交
321
#[doc = "Removes the first element from a vector and return it"]
322
fn shift<T: copy>(&v: [const T]) -> T {
323 324 325 326 327 328 329
    let ln = len::<T>(v);
    assert (ln > 0u);
    let e = v[0];
    v = slice::<T>(v, 1u, ln);
    ret e;
}

B
Brian Anderson 已提交
330
#[doc = "Remove the last element from a vector and return it"]
M
Marijn Haverbeke 已提交
331
fn pop<T>(&v: [const T]) -> T unsafe {
332
    let ln = len(v);
M
Marijn Haverbeke 已提交
333 334
    assert ln > 0u;
    let valptr = ptr::mut_addr_of(v[ln - 1u]);
335
    let val <- *valptr;
M
Marijn Haverbeke 已提交
336
    unsafe::set_len(v, ln - 1u);
337
    val
338 339
}

B
Brian Anderson 已提交
340
#[doc = "Append an element to a vector"]
341
fn push<T: copy>(&v: [const T], initval: T) {
B
Brian Anderson 已提交
342
    v += [initval];
E
Erick Tryzelaar 已提交
343 344
}

345 346 347

// Appending

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

B
Brian Anderson 已提交
351
# Arguments
352

B
Brian Anderson 已提交
353 354 355 356
* v - The vector to grow
* n - The number of elements to add
* initval - The value for the new elements
"]
357
fn grow<T: copy>(&v: [const T], n: uint, initval: T) {
358
    reserve(v, next_power_of_two(len(v) + n));
359
    let mut i: uint = 0u;
360 361 362
    while i < n { v += [initval]; i += 1u; }
}

B
Brian Anderson 已提交
363 364 365
#[doc = "
Expands a vector in place, initializing the new elements to the result of
a function
366

367
Function `init_op` is called `n` times with the values [0..`n`)
368

B
Brian Anderson 已提交
369
# Arguments
370

B
Brian Anderson 已提交
371 372 373 374 375
* 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
"]
376
fn grow_fn<T>(&v: [const T], n: uint, op: init_op<T>) {
377
    reserve(v, next_power_of_two(len(v) + n));
378
    let mut i: uint = 0u;
379 380 381
    while i < n { v += [op(i)]; i += 1u; }
}

B
Brian Anderson 已提交
382
#[doc = "
383 384 385 386 387 388
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 已提交
389
"]
390
fn grow_set<T: copy>(&v: [mutable T], index: uint, initval: T, val: T) {
391
    if index >= len(v) { grow(v, index - len(v) + 1u, initval); }
392 393 394 395 396 397
    v[index] = val;
}


// Functional utilities

B
Brian Anderson 已提交
398
#[doc ="
399
Apply a function to each element of a vector and return the results
B
Brian Anderson 已提交
400
"]
N
Niko Matsakis 已提交
401
fn map<T, U>(v: [T], f: fn(T) -> U) -> [U] {
402
    let mut result = [];
403 404 405 406 407
    reserve(result, len(v));
    for elem: T in v { result += [f(elem)]; }
    ret result;
}

B
Brian Anderson 已提交
408
#[doc = "
409
Apply a function to each pair of elements and return the results
B
Brian Anderson 已提交
410
"]
411 412
fn map2<T: copy, U: copy, V>(v0: [const T], v1: [const U],
                             f: fn(T, U) -> V) -> [V] {
413 414
    let v0_len = len(v0);
    if v0_len != len(v1) { fail; }
415 416
    let mut u: [V] = [];
    let mut i = 0u;
417 418 419 420
    while i < v0_len { u += [f(copy v0[i], copy v1[i])]; i += 1u; }
    ret u;
}

B
Brian Anderson 已提交
421
#[doc = "
422 423 424 425
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 已提交
426
"]
427
fn filter_map<T: copy, U: copy>(v: [const T], f: fn(T) -> option<U>)
428
    -> [U] {
429
    let mut result = [];
430 431
    for elem: T in v {
        alt f(copy elem) {
432
          none {/* no-op */ }
433 434 435 436 437 438
          some(result_elem) { result += [result_elem]; }
        }
    }
    ret result;
}

B
Brian Anderson 已提交
439
#[doc = "
440 441 442 443 444
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 已提交
445
"]
N
Niko Matsakis 已提交
446
fn filter<T: copy>(v: [T], f: fn(T) -> bool) -> [T] {
447
    let mut result = [];
448 449 450 451 452 453
    for elem: T in v {
        if f(elem) { result += [elem]; }
    }
    ret result;
}

B
Brian Anderson 已提交
454 455
#[doc = "
Concatenate a vector of vectors.
456

B
Brian Anderson 已提交
457 458
Flattens a vector of vectors of T into a single vector of T.
"]
459
fn concat<T: copy>(v: [const [const T]]) -> [T] {
460
    let mut new: [T] = [];
461 462 463 464
    for inner: [T] in v { new += inner; }
    ret new;
}

B
Brian Anderson 已提交
465
#[doc = "
466
Concatenate a vector of vectors, placing a given separator between each
B
Brian Anderson 已提交
467
"]
468
fn connect<T: copy>(v: [const [const T]], sep: T) -> [T] {
469 470
    let mut new: [T] = [];
    let mut first = true;
471 472 473 474 475 476 477
    for inner: [T] in v {
        if first { first = false; } else { push(new, sep); }
        new += inner;
    }
    ret new;
}

B
Brian Anderson 已提交
478
#[doc = "Reduce a vector from left to right"]
N
Niko Matsakis 已提交
479
fn foldl<T: copy, U>(z: T, v: [const U], p: fn(T, U) -> T) -> T {
480
    let mut accum = z;
481 482 483 484 485 486
    iter(v) { |elt|
        accum = p(accum, elt);
    }
    ret accum;
}

B
Brian Anderson 已提交
487
#[doc = "Reduce a vector from right to left"]
N
Niko Matsakis 已提交
488
fn foldr<T, U: copy>(v: [const T], z: U, p: fn(T, U) -> U) -> U {
489
    let mut accum = z;
490 491 492 493 494 495
    riter(v) { |elt|
        accum = p(elt, accum);
    }
    ret accum;
}

B
Brian Anderson 已提交
496
#[doc = "
497 498 499
Return true if a predicate matches any elements

If the vector contains no elements then false is returned.
B
Brian Anderson 已提交
500
"]
N
Niko Matsakis 已提交
501
fn any<T>(v: [T], f: fn(T) -> bool) -> bool {
502 503 504 505
    for elem: T in v { if f(elem) { ret true; } }
    ret false;
}

B
Brian Anderson 已提交
506
#[doc = "
507 508 509
Return true if a predicate matches any elements in both vectors.

If the vectors contains no elements then false is returned.
B
Brian Anderson 已提交
510
"]
511
fn any2<T, U>(v0: [const T], v1: [U], f: fn(T, U) -> bool) -> bool {
512 513
    let v0_len = len(v0);
    let v1_len = len(v1);
514
    let mut i = 0u;
515 516 517 518 519 520 521
    while i < v0_len && i < v1_len {
        if f(v0[i], v1[i]) { ret true; };
        i += 1u;
    }
    ret false;
}

B
Brian Anderson 已提交
522
#[doc = "
523 524 525
Return true if a predicate matches all elements

If the vector contains no elements then true is returned.
B
Brian Anderson 已提交
526
"]
N
Niko Matsakis 已提交
527
fn all<T>(v: [T], f: fn(T) -> bool) -> bool {
528 529 530 531
    for elem: T in v { if !f(elem) { ret false; } }
    ret true;
}

B
Brian Anderson 已提交
532
#[doc = "
533 534 535
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 已提交
536
"]
537
fn all2<T, U>(v0: [const T], v1: [const U], f: fn(T, U) -> bool) -> bool {
538 539
    let v0_len = len(v0);
    if v0_len != len(v1) { ret false; }
540
    let mut i = 0u;
541 542 543 544
    while i < v0_len { if !f(v0[i], v1[i]) { ret false; }; i += 1u; }
    ret true;
}

B
Brian Anderson 已提交
545
#[doc = "Return true if a vector contains an element with the given value"]
546
fn contains<T>(v: [const T], x: T) -> bool {
547 548 549 550
    for elt: T in v { if x == elt { ret true; } }
    ret false;
}

B
Brian Anderson 已提交
551
#[doc = "Returns the number of elements that are equal to a given value"]
552
fn count<T>(v: [const T], x: T) -> uint {
553
    let mut cnt = 0u;
554 555 556 557
    for elt: T in v { if x == elt { cnt += 1u; } }
    ret cnt;
}

B
Brian Anderson 已提交
558
#[doc = "
559
Search for the first element that matches a given predicate
560 561 562 563

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 已提交
564
"]
565
fn find<T: copy>(v: [const T], f: fn(T) -> bool) -> option<T> {
566
    find_from(v, 0u, len(v), f)
567 568
}

B
Brian Anderson 已提交
569
#[doc = "
570 571 572 573 574
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 已提交
575
"]
576 577
fn find_from<T: copy>(v: [const T], start: uint, end: uint,
                      f: fn(T) -> bool) -> option<T> {
578 579 580
    option::map(position_from(v, start, end, f)) { |i| v[i] }
}

B
Brian Anderson 已提交
581
#[doc = "
582 583 584 585 586
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 已提交
587
"]
588
fn rfind<T: copy>(v: [const T], f: fn(T) -> bool) -> option<T> {
589 590 591
    rfind_from(v, 0u, len(v), f)
}

B
Brian Anderson 已提交
592
#[doc = "
593 594 595 596 597
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 已提交
598
"]
599 600
fn rfind_from<T: copy>(v: [const T], start: uint, end: uint,
                       f: fn(T) -> bool) -> option<T> {
601
    option::map(rposition_from(v, start, end, f)) { |i| v[i] }
602 603
}

B
Brian Anderson 已提交
604
#[doc = "Find the first index containing a matching value"]
605
fn position_elt<T>(v: [const T], x: T) -> option<uint> {
606
    position(v) { |y| x == y }
607 608
}

B
Brian Anderson 已提交
609
#[doc = "
610 611 612 613 614
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 已提交
615
"]
616
fn position<T>(v: [const T], f: fn(T) -> bool) -> option<uint> {
617 618 619
    position_from(v, 0u, len(v), f)
}

B
Brian Anderson 已提交
620
#[doc = "
621 622 623 624 625
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 已提交
626
"]
627 628
fn position_from<T>(v: [const T], start: uint, end: uint,
                    f: fn(T) -> bool) -> option<uint> {
629 630
    assert start <= end;
    assert end <= len(v);
631
    let mut i = start;
632
    while i < end { if f(v[i]) { ret some::<uint>(i); } i += 1u; }
633 634 635
    ret none;
}

B
Brian Anderson 已提交
636
#[doc = "Find the last index containing a matching value"]
637
fn rposition_elt<T>(v: [const T], x: T) -> option<uint> {
638 639 640
    rposition(v) { |y| x == y }
}

B
Brian Anderson 已提交
641
#[doc = "
642
Find the last index matching some predicate
643

644 645 646
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 已提交
647
"]
648
fn rposition<T>(v: [const T], f: fn(T) -> bool) -> option<uint> {
649 650 651
    rposition_from(v, 0u, len(v), f)
}

B
Brian Anderson 已提交
652
#[doc = "
653 654 655 656 657
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 已提交
658
"]
659 660
fn rposition_from<T>(v: [const T], start: uint, end: uint,
                     f: fn(T) -> bool) -> option<uint> {
661 662
    assert start <= end;
    assert end <= len(v);
663
    let mut i = end;
664 665 666 667
    while i > start {
        if f(v[i - 1u]) { ret some::<uint>(i - 1u); }
        i -= 1u;
    }
668 669 670 671 672 673 674
    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 已提交
675
#[doc = "
676 677 678 679 680 681
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 已提交
682
"]
683
fn unzip<T: copy, U: copy>(v: [const (T, U)]) -> ([T], [U]) {
684
    let mut as = [], bs = [];
685 686 687 688
    for (a, b) in v { as += [a]; bs += [b]; }
    ret (as, bs);
}

B
Brian Anderson 已提交
689
#[doc = "
690 691 692 693
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 已提交
694
"]
695
fn zip<T: copy, U: copy>(v: [const T], u: [const U]) -> [(T, U)] {
696 697 698
    let mut zipped = [];
    let sz = len(v);
    let mut i = 0u;
699
    assert sz == len(u);
700 701 702 703
    while i < sz { zipped += [(v[i], u[i])]; i += 1u; }
    ret zipped;
}

B
Brian Anderson 已提交
704
#[doc = "
705 706
Swaps two elements in a vector

B
Brian Anderson 已提交
707 708 709 710 711 712
# Arguments

* v  The input vector
* a - The index of the first element
* b - The index of the second element
"]
713 714 715 716
fn swap<T>(v: [mutable T], a: uint, b: uint) {
    v[a] <-> v[b];
}

B
Brian Anderson 已提交
717
#[doc = "Reverse the order of elements in a vector, in place"]
718
fn reverse<T>(v: [mutable T]) {
719
    let mut i: uint = 0u;
720 721 722 723 724
    let ln = len::<T>(v);
    while i < ln / 2u { v[i] <-> v[ln - i - 1u]; i += 1u; }
}


B
Brian Anderson 已提交
725
#[doc = "Returns a vector with the order of elements reversed"]
726
fn reversed<T: copy>(v: [const T]) -> [T] {
727 728
    let mut rs: [T] = [];
    let mut i = len::<T>(v);
729 730 731 732 733 734
    if i == 0u { ret rs; } else { i -= 1u; }
    while i != 0u { rs += [v[i]]; i -= 1u; }
    rs += [v[0]];
    ret rs;
}

B
Brian Anderson 已提交
735
#[doc = "
736 737 738 739
Iterates over a vector

Iterates over vector `v` and, for each element, calls function `f` with the
element's value.
B
Brian Anderson 已提交
740
"]
741
#[inline(always)]
N
Niko Matsakis 已提交
742
fn iter<T>(v: [const T], f: fn(T)) {
743 744 745 746 747 748 749 750 751
    unsafe {
        let mut n = vec::len(v);
        let mut p = unsafe::to_ptr(v);
        while n > 0u {
            f(*p);
            p = ptr::offset(p, 1u);
            n -= 1u;
        }
    }
752 753
}

B
Brian Anderson 已提交
754
#[doc = "Iterates over two vectors in parallel"]
755
#[inline]
756
fn iter2<U, T>(v: [ U], v2: [const T], f: fn(U, T)) {
757
    let mut i = 0;
758 759 760
    for elt in v { f(elt, v2[i]); i += 1; }
}

B
Brian Anderson 已提交
761
#[doc = "
762 763 764 765
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 已提交
766
"]
767
#[inline(always)]
N
Niko Matsakis 已提交
768
fn iteri<T>(v: [const T], f: fn(uint, T)) {
769 770
    let mut i = 0u;
    let l = len(v);
771 772 773
    while i < l { f(i, v[i]); i += 1u; }
}

B
Brian Anderson 已提交
774
#[doc = "
775 776 777 778
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 已提交
779
"]
N
Niko Matsakis 已提交
780
fn riter<T>(v: [const T], f: fn(T)) {
781
    riteri(v) { |_i, v| f(v) }
782 783
}

B
Brian Anderson 已提交
784
#[doc ="
785 786 787 788
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 已提交
789
"]
N
Niko Matsakis 已提交
790
fn riteri<T>(v: [const T], f: fn(uint, T)) {
791
    let mut i = len(v);
792 793 794 795 796 797
    while 0u < i {
        i -= 1u;
        f(i, v[i]);
    };
}

B
Brian Anderson 已提交
798 799
#[doc = "
Iterate over all permutations of vector `v`.
800

B
Brian Anderson 已提交
801 802 803
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).
804 805 806

The total number of permutations produced is `len(v)!`.  If `v` contains
repeated elements, then some permutations are repeated.
B
Brian Anderson 已提交
807
"]
808
fn permute<T: copy>(v: [T], put: fn([T])) {
809 810 811 812
  let ln = len(v);
  if ln == 0u {
    put([]);
  } else {
813
    let mut i = 0u;
814 815 816 817 818 819 820 821 822
    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;
    }
  }
}

823
fn windowed <TT: copy> (nn: uint, xx: [const TT]) -> [[TT]] {
824
   let mut ww = [];
825 826 827 828 829 830 831 832 833 834 835 836 837 838 839

   assert 1u <= nn;

   vec::iteri (xx, {|ii, _x|
      let len = vec::len(xx);

      if ii+nn <= len {
         let w = vec::slice ( xx, ii, ii+nn );
         vec::push (ww, w);
      }
   });

   ret ww;
}

B
Brian Anderson 已提交
840 841
#[doc = "
Work with the buffer of a vector.
842

B
Brian Anderson 已提交
843 844 845
Allows for unsafe manipulation of vector contents, which is useful for native
interop.
"]
846 847 848 849
fn as_buf<E,T>(v: [const E], f: fn(*E) -> T) -> T unsafe {
    let buf = unsafe::to_ptr(v); f(buf)
}

850 851 852 853
fn as_mut_buf<E,T>(v: [mutable E], f: fn(*mutable E) -> T) -> T unsafe {
    let buf = unsafe::to_ptr(v) as *mutable E; f(buf)
}

854
impl vec_len<T> for [T] {
855
    #[inline(always)]
856 857
    fn len() -> uint { len(self) }
}
858

859
mod unsafe {
860
    // FIXME: This should have crate visibility
861 862
    type vec_repr = {mutable fill: uint, mutable alloc: uint, data: u8};

B
Brian Anderson 已提交
863
    #[doc = "
864 865
    Constructs a vector from an unsafe pointer to a buffer

B
Brian Anderson 已提交
866
    # Arguments
867

B
Brian Anderson 已提交
868 869 870
    * ptr - An unsafe pointer to a buffer of `T`
    * elts - The number of elements in the buffer
    "]
871
    #[inline(always)]
872 873 874 875 876
    unsafe fn from_buf<T>(ptr: *T, elts: uint) -> [T] {
        ret rustrt::vec_from_buf_shared(sys::get_type_desc::<T>(),
                                        ptr, elts);
    }

B
Brian Anderson 已提交
877
    #[doc = "
878 879 880 881 882
    Sets the length of a vector

    This well explicitly set the size of the vector, without actually
    modifing its buffers, so it is up to the caller to ensure that
    the vector is actually the specified size.
B
Brian Anderson 已提交
883
    "]
884
    #[inline(always)]
885 886 887 888 889
    unsafe fn set_len<T>(&v: [const T], new_len: uint) {
        let repr: **vec_repr = ::unsafe::reinterpret_cast(addr_of(v));
        (**repr).fill = new_len * sys::size_of::<T>();
    }

B
Brian Anderson 已提交
890
    #[doc = "
891 892 893 894 895 896 897
    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 已提交
898
    "]
899
    #[inline(always)]
900 901 902 903 904 905
    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));
    }
}

906 907 908 909 910
mod u8 {
    export cmp;
    export lt, le, eq, ne, ge, gt;
    export hash;

B
Brian Anderson 已提交
911
    #[doc = "Bytewise string comparison"]
912 913 914
    pure fn cmp(&&a: [u8], &&b: [u8]) -> int unsafe {
        let a_len = len(a);
        let b_len = len(b);
915
        let n = uint::min(a_len, b_len) as libc::size_t;
916 917
        let r = libc::memcmp(unsafe::to_ptr(a) as *libc::c_void,
                             unsafe::to_ptr(b) as *libc::c_void, n) as int;
918 919 920 921 922 923 924 925 926 927 928 929

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

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

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

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

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

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

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

B
Brian Anderson 已提交
948
    #[doc = "String hash function"]
949 950 951 952
    fn hash(&&s: [u8]) -> uint {
        // djb hash.
        // FIXME: replace with murmur.

953
        let mut u: uint = 5381u;
954 955 956 957 958
        vec::iter(s, { |c| u *= 33u; u += c as uint; });
        ret u;
    }
}

959 960 961 962 963 964 965 966 967 968 969 970 971
#[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; }

972
    fn square_if_odd(&&n: uint) -> option<uint> {
973 974 975 976 977 978 979 980 981
        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];
982
        let ptr = unsafe::to_ptr(a);
983 984 985 986 987 988 989 990
        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];
991
        ptr = unsafe::to_ptr(c);
992 993 994 995 996 997 998 999 1000 1001 1002 1003
        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]
    fn test_init_fn() {
        // Test on-stack init_fn.
1004
        let v = init_fn(3u, square);
1005 1006 1007 1008 1009 1010
        assert (len(v) == 3u);
        assert (v[0] == 0u);
        assert (v[1] == 1u);
        assert (v[2] == 4u);

        // Test on-heap init_fn.
1011
        v = init_fn(5u, square);
1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022
        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]
    fn test_init_elt() {
        // Test on-stack init_elt.
1023
        let v = init_elt(2u, 10u);
1024 1025 1026 1027 1028
        assert (len(v) == 2u);
        assert (v[0] == 10u);
        assert (v[1] == 10u);

        // Test on-heap init_elt.
1029
        v = init_elt(6u, 20u);
1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066
        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() {
        let a = [11];
        assert (tail(a) == []);

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

    #[test]
    fn test_last() {
1067
        let n = last_opt([]);
1068
        assert (n == none);
1069
        n = last_opt([1, 2, 3]);
1070
        assert (n == some(3));
1071
        n = last_opt([1, 2, 3, 4, 5]);
1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225
        assert (n == some(5));
    }

    #[test]
    fn test_slice() {
        // Test on-stack -> on-stack slice.
        let v = slice([1, 2, 3], 1u, 3u);
        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.
        let v = [1, 2, 3];
        let e = pop(v);
        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().
        let v = [];
        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().
        let v = [];
        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() {
        let v = [];
        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() {
        let v = [mutable 1, 2, 3];
        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.
        let v = [1u, 2u, 3u];
        let w = map(v, square_ref);
        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);
        let i = 0;
        while i < 5 { assert (v0[i] * v1[i] == u[i]); i += 1; }
    }

    #[test]
    fn test_filter_map() {
        // Test on-stack filter-map.
        let v = [1u, 2u, 3u];
        let w = filter_map(v, square_if_odd);
        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);

1226
        fn halve(&&i: int) -> option<int> {
1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401
            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.
        let v = [1u, 2u, 3u];
        let sum = foldl(0u, v, add);
        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
        }
        let v = [1, 2, 3, 4];
        let sum = foldl(0, v, sub);
        assert sum == -10;
    }

    #[test]
    fn test_foldr() {
        fn sub(&&a: int, &&b: int) -> int {
            a - b
        }
        let v = [1, 2, 3, 4];
        let sum = foldr(v, 0, sub);
        assert sum == -2;
    }

    #[test]
    fn test_iter_empty() {
        let i = 0;
        iter::<int>([], { |_v| i += 1 });
        assert i == 0;
    }

    #[test]
    fn test_iter_nonempty() {
        let i = 0;
        iter([1, 2, 3], { |v| i += v });
        assert i == 6;
    }

    #[test]
    fn test_iteri() {
        let i = 0;
        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() {
        let i = 0;
        riter::<int>([], { |_v| i += 1 });
        assert i == 0;
    }

    #[test]
    fn test_riter_nonempty() {
        let i = 0;
        riter([1, 2, 3], { |v|
            if i == 0 { assert v == 3; }
            i += v
        });
        assert i == 6;
    }

    #[test]
    fn test_riteri() {
        let i = 0;
        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() {
        let results: [[int]];

        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]
1402 1403 1404 1405 1406 1407 1408 1409
    fn test_position_elt() {
        assert position_elt([], 1) == none;

        let v1 = [1, 2, 3, 3, 2, 5];
        assert position_elt(v1, 1) == some(0u);
        assert position_elt(v1, 2) == some(1u);
        assert position_elt(v1, 5) == some(5u);
        assert position_elt(v1, 4) == none;
1410 1411 1412
    }

    #[test]
1413
    fn test_position() {
1414 1415
        fn less_than_three(&&i: int) -> bool { ret i < 3; }
        fn is_eighteen(&&i: int) -> bool { ret i == 18; }
1416 1417 1418 1419 1420 1421

        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;
1422 1423 1424
    }

    #[test]
1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451
    fn test_position_from() {
        assert position_from([], 0u, 0u, f) == none;

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

        assert position_from(v, 0u, 0u, f) == none;
        assert position_from(v, 0u, 1u, f) == none;
        assert position_from(v, 0u, 2u, f) == some(1u);
        assert position_from(v, 0u, 3u, f) == some(1u);
        assert position_from(v, 0u, 4u, f) == some(1u);

        assert position_from(v, 1u, 1u, f) == none;
        assert position_from(v, 1u, 2u, f) == some(1u);
        assert position_from(v, 1u, 3u, f) == some(1u);
        assert position_from(v, 1u, 4u, f) == some(1u);

        assert position_from(v, 2u, 2u, f) == none;
        assert position_from(v, 2u, 3u, f) == none;
        assert position_from(v, 2u, 4u, f) == some(3u);

        assert position_from(v, 3u, 3u, f) == none;
        assert position_from(v, 3u, 4u, f) == some(3u);

        assert position_from(v, 4u, 4u, f) == none;
    }

1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491
    #[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' }
        let v = [(0, 'a'), (1, 'b'), (2, 'c'), (3, 'b')];

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

    #[test]
    fn test_find_from() {
        assert find_from([], 0u, 0u, f) == none;

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

        assert find_from(v, 0u, 0u, f) == none;
        assert find_from(v, 0u, 1u, f) == none;
        assert find_from(v, 0u, 2u, f) == some((1, 'b'));
        assert find_from(v, 0u, 3u, f) == some((1, 'b'));
        assert find_from(v, 0u, 4u, f) == some((1, 'b'));

        assert find_from(v, 1u, 1u, f) == none;
        assert find_from(v, 1u, 2u, f) == some((1, 'b'));
        assert find_from(v, 1u, 3u, f) == some((1, 'b'));
        assert find_from(v, 1u, 4u, f) == some((1, 'b'));

        assert find_from(v, 2u, 2u, f) == none;
        assert find_from(v, 2u, 3u, f) == none;
        assert find_from(v, 2u, 4u, f) == some((3, 'b'));

        assert find_from(v, 3u, 3u, f) == none;
        assert find_from(v, 3u, 4u, f) == some((3, 'b'));

        assert find_from(v, 4u, 4u, f) == none;
    }

1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530
    #[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' }
        let v = [(0, 'a'), (1, 'b'), (2, 'c'), (3, 'b')];

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

    #[test]
    fn test_rposition_from() {
        assert rposition_from([], 0u, 0u, f) == none;

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

        assert rposition_from(v, 0u, 0u, f) == none;
        assert rposition_from(v, 0u, 1u, f) == none;
        assert rposition_from(v, 0u, 2u, f) == some(1u);
        assert rposition_from(v, 0u, 3u, f) == some(1u);
        assert rposition_from(v, 0u, 4u, f) == some(3u);

        assert rposition_from(v, 1u, 1u, f) == none;
        assert rposition_from(v, 1u, 2u, f) == some(1u);
        assert rposition_from(v, 1u, 3u, f) == some(1u);
        assert rposition_from(v, 1u, 4u, f) == some(3u);

        assert rposition_from(v, 2u, 2u, f) == none;
        assert rposition_from(v, 2u, 3u, f) == none;
        assert rposition_from(v, 2u, 4u, f) == some(3u);

        assert rposition_from(v, 3u, 3u, f) == none;
        assert rposition_from(v, 3u, 4u, f) == some(3u);

        assert rposition_from(v, 4u, 4u, f) == none;
    }
1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569

    #[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' }
        let v = [(0, 'a'), (1, 'b'), (2, 'c'), (3, 'b')];

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

    #[test]
    fn test_rfind_from() {
        assert rfind_from([], 0u, 0u, f) == none;

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

        assert rfind_from(v, 0u, 0u, f) == none;
        assert rfind_from(v, 0u, 1u, f) == none;
        assert rfind_from(v, 0u, 2u, f) == some((1, 'b'));
        assert rfind_from(v, 0u, 3u, f) == some((1, 'b'));
        assert rfind_from(v, 0u, 4u, f) == some((3, 'b'));

        assert rfind_from(v, 1u, 1u, f) == none;
        assert rfind_from(v, 1u, 2u, f) == some((1, 'b'));
        assert rfind_from(v, 1u, 3u, f) == some((1, 'b'));
        assert rfind_from(v, 1u, 4u, f) == some((3, 'b'));

        assert rfind_from(v, 2u, 2u, f) == none;
        assert rfind_from(v, 2u, 3u, f) == none;
        assert rfind_from(v, 2u, 4u, f) == some((3, 'b'));

        assert rfind_from(v, 3u, 3u, f) == none;
        assert rfind_from(v, 3u, 4u, f) == some((3, 'b'));

        assert rfind_from(v, 4u, 4u, f) == none;
1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605
    }

    #[test]
    fn reverse_and_reversed() {
        let v: [mutable int] = [mutable 10, 20];
        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 == []);
        let v3: [mutable int] = [mutable];
        reverse::<int>(v3);
    }

    #[test]
    fn reversed_mut() {
        let v2 = reversed::<int>([mutable 10, 20]);
        assert (v2[0] == 20);
        assert (v2[1] == 10);
    }

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

1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647
    #[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]];
    }

1648
    #[test]
B
Brian Anderson 已提交
1649
    #[should_fail]
1650 1651
    #[ignore(cfg(target_os = "win32"))]
    fn test_init_empty() {
B
Brian Anderson 已提交
1652
        init::<int>([]);
1653 1654 1655 1656 1657 1658 1659
    }

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

1660 1661 1662 1663 1664 1665 1666
    #[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];
    }

1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679
    #[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]
1680
    #[ignore(cfg(target_os = "win32"))]
1681 1682 1683
    fn test_windowed_() {
        let _x = windowed (0u, [1u,2u,3u,4u,5u,6u]);
    }
1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701

    #[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;
    }
1702 1703
}

1704 1705 1706 1707 1708 1709 1710
// Local Variables:
// mode: rust;
// fill-column: 78;
// indent-tabs-mode: nil
// c-basic-offset: 4
// buffer-file-coding-system: utf-8-unix
// End: