2012-12-11 01:32:48 +00: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.
|
|
|
|
|
2012-07-24 23:23:23 +00:00
|
|
|
type ints = {sum: ~int, values: ~[int]};
|
|
|
|
|
|
|
|
fn add_int(x: &mut ints, v: int) {
|
|
|
|
*x.sum += v;
|
|
|
|
let mut values = ~[];
|
|
|
|
x.values <-> values;
|
2012-09-27 00:33:34 +00:00
|
|
|
values.push(v);
|
2012-10-23 18:11:23 +00:00
|
|
|
x.values <-> values;
|
2012-07-24 23:23:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn iter_ints(x: &ints, f: fn(x: &int) -> bool) {
|
|
|
|
let l = x.values.len();
|
|
|
|
uint::range(0, l, |i| f(&x.values[i]))
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let mut ints = ~{sum: ~0, values: ~[]};
|
|
|
|
add_int(ints, 22);
|
|
|
|
add_int(ints, 44);
|
|
|
|
|
|
|
|
for iter_ints(ints) |i| {
|
2012-08-23 00:24:52 +00:00
|
|
|
error!("int = %d", *i);
|
2012-07-24 23:23:23 +00:00
|
|
|
}
|
|
|
|
|
2012-08-23 00:24:52 +00:00
|
|
|
error!("ints=%?", ints);
|
2012-07-24 23:23:23 +00:00
|
|
|
}
|