2012-12-10 19:32:48 -06:00
|
|
|
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2012-04-11 23:45:18 -05:00
|
|
|
// xfail-test -- flat_map_to_vec currently disable
|
|
|
|
|
2012-06-29 18:26:56 -05:00
|
|
|
fn repeat(&&x: uint) -> ~[uint] { ~[x, x] }
|
2012-04-11 23:45:18 -05:00
|
|
|
|
|
|
|
fn incd_if_even(&&x: uint) -> option<uint> {
|
|
|
|
if (x % 2u) == 0u {some(x + 1u)} else {none}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2012-06-29 18:26:56 -05:00
|
|
|
assert ~[1u, 3u].flat_map_to_vec(repeat) == ~[1u, 1u, 3u, 3u];
|
|
|
|
assert ~[].flat_map_to_vec(repeat) == ~[];
|
|
|
|
assert none.flat_map_to_vec(repeat) == ~[];
|
|
|
|
assert some(1u).flat_map_to_vec(repeat) == ~[1u, 1u];
|
|
|
|
assert some(2u).flat_map_to_vec(repeat) == ~[2u, 2u];
|
2012-04-11 23:45:18 -05:00
|
|
|
|
2012-06-29 18:26:56 -05:00
|
|
|
assert ~[1u, 2u, 5u].flat_map_to_vec(incd_if_even) == ~[3u];
|
|
|
|
assert ~[].flat_map_to_vec(incd_if_even) == ~[];
|
|
|
|
assert none.flat_map_to_vec(incd_if_even) == ~[];
|
|
|
|
assert some(1u).flat_map_to_vec(incd_if_even) == ~[];
|
|
|
|
assert some(2u).flat_map_to_vec(incd_if_even) == ~[3u];
|
2012-04-11 23:45:18 -05:00
|
|
|
}
|