rust/src/test/run-pass/non-boolean-pure-fns.rs

23 lines
561 B
Rust
Raw Normal View History

2011-08-24 19:24:58 -05:00
use std;
import std::list::*;
pure fn pure_length_go<T: copy>(ls: @list<T>, acc: uint) -> uint {
2012-08-06 14:34:08 -05:00
match *ls { nil => { acc } cons(_, tl) => { pure_length_go(tl, acc + 1u) } }
2011-08-24 19:24:58 -05:00
}
pure fn pure_length<T: copy>(ls: @list<T>) -> uint { pure_length_go(ls, 0u) }
2011-08-24 19:24:58 -05:00
pure fn nonempty_list<T: copy>(ls: @list<T>) -> bool { pure_length(ls) > 0u }
2011-08-24 19:24:58 -05:00
fn safe_head<T: copy>(ls: @list<T>) -> T {
assert is_not_empty(ls);
2012-08-01 19:30:05 -05:00
return head(ls);
}
2011-08-24 19:24:58 -05:00
fn main() {
let mylist = @cons(@1u, @nil);
assert (nonempty_list(mylist));
2011-09-02 17:34:58 -05:00
assert (*safe_head(mylist) == 1u);
}