2012-12-13 15:05:22 -06:00
|
|
|
// xfail-fast
|
|
|
|
|
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.
|
|
|
|
|
2013-10-23 03:49:18 -05:00
|
|
|
#[feature(managed_boxes)];
|
|
|
|
|
2013-05-20 19:07:24 -05:00
|
|
|
extern mod extra;
|
2011-08-24 19:24:58 -05:00
|
|
|
|
2013-10-02 22:00:54 -05:00
|
|
|
use extra::list::{List, Cons, Nil, head, is_empty};
|
2011-08-24 19:24:58 -05:00
|
|
|
|
2013-07-11 14:05:17 -05:00
|
|
|
fn pure_length_go<T:Clone>(ls: @List<T>, acc: uint) -> uint {
|
2012-09-04 16:36:12 -05:00
|
|
|
match *ls { Nil => { acc } Cons(_, tl) => { pure_length_go(tl, acc + 1u) } }
|
2011-08-24 19:24:58 -05:00
|
|
|
}
|
|
|
|
|
2013-07-11 14:05:17 -05:00
|
|
|
fn pure_length<T:Clone>(ls: @List<T>) -> uint { pure_length_go(ls, 0u) }
|
2011-08-24 19:24:58 -05:00
|
|
|
|
2013-07-11 14:05:17 -05:00
|
|
|
fn nonempty_list<T:Clone>(ls: @List<T>) -> bool { pure_length(ls) > 0u }
|
2011-08-24 19:24:58 -05:00
|
|
|
|
2013-07-11 14:05:17 -05:00
|
|
|
fn safe_head<T:Clone>(ls: @List<T>) -> T {
|
2013-03-28 20:39:09 -05:00
|
|
|
assert!(!is_empty(ls));
|
2012-08-01 19:30:05 -05:00
|
|
|
return head(ls);
|
2011-12-29 14:24:03 -06:00
|
|
|
}
|
2011-08-24 19:24:58 -05:00
|
|
|
|
2013-02-01 21:43:17 -06:00
|
|
|
pub fn main() {
|
2012-09-04 16:12:14 -05:00
|
|
|
let mylist = @Cons(@1u, @Nil);
|
2013-03-28 20:39:09 -05:00
|
|
|
assert!((nonempty_list(mylist)));
|
2013-05-18 21:02:45 -05:00
|
|
|
assert_eq!(*safe_head(mylist), 1u);
|
2011-09-02 17:34:58 -05:00
|
|
|
}
|