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

63 lines
2.0 KiB
Rust
Raw Normal View History

// 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-12-29 11:49:33 -06:00
// Check usage and precedence of block arguments in expressions:
pub fn main() {
let v = ~[-1f, 0f, 1f, 2f, 3f];
2011-12-29 11:49:33 -06:00
// Statement form does not require parentheses:
for vec::each(v) |i| {
log(info, *i);
2012-06-30 18:19:07 -05:00
}
2011-12-29 11:49:33 -06:00
// Usable at all:
2012-09-28 00:20:47 -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-09-28 00:20:47 -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:
let abs_v = do vec::map(v) |e| { float::abs(*e) };
2012-09-28 00:20:47 -05:00
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-09-28 00:20:47 -05:00
if !do vec::any(v) |e| { float::is_positive(*e) } {
2011-12-29 11:49:33 -06:00
assert false;
}
2012-09-28 00:20:47 -05:00
match do vec::all(v) |e| { float::is_negative(*e) } {
true => { fail!(~"incorrect answer."); }
2012-08-03 21:59:04 -05:00
false => { }
2011-12-29 11:49:33 -06:00
}
2012-08-06 14:34:08 -05:00
match 3 {
2012-09-28 00:20:47 -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-09-28 00:20:47 -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-09-28 00:20:47 -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;
}