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-12-29 11:49:33 -06:00
|
|
|
// Check usage and precedence of block arguments in expressions:
|
2013-02-01 21:43:17 -06:00
|
|
|
pub fn main() {
|
2012-06-29 18:26:56 -05:00
|
|
|
let v = ~[-1f, 0f, 1f, 2f, 3f];
|
2011-12-29 11:49:33 -06:00
|
|
|
|
|
|
|
// Statement form does not require parentheses:
|
2012-09-18 23:41:37 -05:00
|
|
|
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:
|
2012-09-21 20:43:30 -05:00
|
|
|
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) } {
|
2013-02-11 21:26:38 -06:00
|
|
|
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
|
|
|
_ => {
|
2013-02-11 21:26:38 -06: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;
|
|
|
|
}
|