rust/src/test/run-pass/block-arg.rs

53 lines
1.5 KiB
Rust
Raw Normal View History

2011-12-29 11:49:33 -06:00
// Check usage and precedence of block arguments in expressions:
fn main() {
let v = ~[-1f, 0f, 1f, 2f, 3f];
2011-12-29 11:49:33 -06:00
// Statement form does not require parentheses:
2012-06-30 18:19:07 -05:00
do vec::iter(v) |i| {
2011-12-29 11:49:33 -06:00
log(info, i);
2012-06-30 18:19:07 -05:00
}
2011-12-29 11:49:33 -06:00
// Usable at all:
2012-06-30 18:19:07 -05:00
let mut any_negative = do vec::any(v) |e| { float::is_negative(e) };
2011-12-29 11:49:33 -06:00
assert any_negative;
// Higher precedence than assignments:
2012-06-30 18:19:07 -05:00
any_negative = do vec::any(v) |e| { float::is_negative(e) };
2011-12-29 11:49:33 -06:00
assert any_negative;
// Higher precedence than unary operations:
2012-06-30 18:19:07 -05:00
let abs_v = do vec::map(v) |e| { float::abs(e) };
assert do vec::all(abs_v) |e| { float::is_nonnegative(e) };
assert !do vec::any(abs_v) |e| { float::is_negative(e) };
2011-12-29 11:49:33 -06:00
// Usable in funny statement-like forms:
2012-06-30 18:19:07 -05:00
if !do vec::any(v) |e| { float::is_positive(e) } {
2011-12-29 11:49:33 -06:00
assert false;
}
2012-08-06 14:34:08 -05:00
match do vec::all(v) |e| { float::is_negative(e) } {
2012-08-03 21:59:04 -05:00
true => { fail ~"incorrect answer."; }
false => { }
2011-12-29 11:49:33 -06:00
}
2012-08-06 14:34:08 -05:00
match 3 {
2012-08-03 21:59:04 -05:00
_ if do vec::any(v) |e| { float::is_negative(e) } => {
2011-12-29 11:49:33 -06:00
}
2012-08-03 21:59:04 -05:00
_ => {
fail ~"wrong answer.";
2011-12-29 11:49:33 -06:00
}
}
// Lower precedence than binary operations:
2012-06-30 18:19:07 -05:00
let w = do vec::foldl(0f, v) |x, y| { x + y } + 10f;
let y = do vec::foldl(0f, v) |x, y| { x + y } + 10f;
let z = 10f + do vec::foldl(0f, v) |x, y| { x + y };
2011-12-29 11:49:33 -06:00
assert w == y;
assert y == z;
2012-06-30 18:19:07 -05:00
// In the tail of a block
2011-12-29 11:49:33 -06:00
let w =
2012-06-30 18:19:07 -05:00
if true { do vec::any(abs_v) |e| { float::is_nonnegative(e) } }
2011-12-29 11:49:33 -06:00
else { false };
assert w;
}