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.
|
|
|
|
|
2011-08-30 18:23:20 -05:00
|
|
|
// In this case, the code should compile and should
|
|
|
|
// succeed at runtime
|
2012-09-05 14:32:05 -05:00
|
|
|
use vec::{head, is_not_empty, last, same_length, zip};
|
2011-08-30 18:23:20 -05:00
|
|
|
|
2012-06-29 18:26:56 -05:00
|
|
|
fn enum_chars(start: u8, end: u8) -> ~[char] {
|
2012-03-10 19:07:23 -06:00
|
|
|
assert start < end;
|
|
|
|
let mut i = start;
|
2012-06-29 18:26:56 -05:00
|
|
|
let mut r = ~[];
|
2012-09-26 19:33:34 -05:00
|
|
|
while i <= end { r.push(i as char); i += 1u as u8; }
|
2012-08-01 19:30:05 -05:00
|
|
|
return r;
|
2012-03-10 19:07:23 -06:00
|
|
|
}
|
|
|
|
|
2012-06-29 18:26:56 -05:00
|
|
|
fn enum_uints(start: uint, end: uint) -> ~[uint] {
|
2012-03-10 19:07:23 -06:00
|
|
|
assert start < end;
|
|
|
|
let mut i = start;
|
2012-06-29 18:26:56 -05:00
|
|
|
let mut r = ~[];
|
2012-09-26 19:33:34 -05:00
|
|
|
while i <= end { r.push(i); i += 1u; }
|
2012-08-01 19:30:05 -05:00
|
|
|
return r;
|
2012-03-10 19:07:23 -06:00
|
|
|
}
|
|
|
|
|
2011-08-30 18:23:20 -05:00
|
|
|
fn main() {
|
|
|
|
let a = 'a' as u8, j = 'j' as u8, k = 1u, l = 10u;
|
|
|
|
let chars = enum_chars(a, j);
|
2011-09-02 17:34:58 -05:00
|
|
|
let ints = enum_uints(k, l);
|
2011-08-30 18:23:20 -05:00
|
|
|
|
|
|
|
let ps = zip(chars, ints);
|
|
|
|
|
|
|
|
assert (head(ps) == ('a', 1u));
|
2012-03-08 17:24:27 -06:00
|
|
|
assert (last(ps) == (j as char, 10u));
|
2011-08-30 19:19:13 -05:00
|
|
|
}
|