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.
|
|
|
|
|
2013-05-20 19:07:24 -05:00
|
|
|
use std::util;
|
2013-05-05 23:42:54 -05:00
|
|
|
|
2013-01-26 00:46:32 -06:00
|
|
|
struct Ints {sum: ~int, values: ~[int]}
|
2012-07-24 18:23:23 -05:00
|
|
|
|
2013-01-26 00:46:32 -06:00
|
|
|
fn add_int(x: &mut Ints, v: int) {
|
2012-07-24 18:23:23 -05:00
|
|
|
*x.sum += v;
|
|
|
|
let mut values = ~[];
|
2013-05-05 23:42:54 -05:00
|
|
|
util::swap(&mut values, &mut x.values);
|
2012-09-26 19:33:34 -05:00
|
|
|
values.push(v);
|
2013-05-05 23:42:54 -05:00
|
|
|
util::swap(&mut values, &mut x.values);
|
2012-07-24 18:23:23 -05:00
|
|
|
}
|
|
|
|
|
2013-11-19 18:34:19 -06:00
|
|
|
fn iter_ints(x: &Ints, f: |x: &int| -> bool) -> bool {
|
2012-07-24 18:23:23 -05:00
|
|
|
let l = x.values.len();
|
2013-08-01 17:35:46 -05:00
|
|
|
range(0u, l).advance(|i| f(&x.values[i]))
|
2012-07-24 18:23:23 -05:00
|
|
|
}
|
|
|
|
|
2013-02-01 21:43:17 -06:00
|
|
|
pub fn main() {
|
2013-01-26 00:46:32 -06:00
|
|
|
let mut ints = ~Ints {sum: ~0, values: ~[]};
|
2012-07-24 18:23:23 -05:00
|
|
|
add_int(ints, 22);
|
|
|
|
add_int(ints, 44);
|
|
|
|
|
2013-08-02 01:17:20 -05:00
|
|
|
do iter_ints(ints) |i| {
|
2013-10-21 15:08:31 -05:00
|
|
|
error!("int = {}", *i);
|
2013-08-02 01:17:20 -05:00
|
|
|
true
|
|
|
|
};
|
2012-07-24 18:23:23 -05:00
|
|
|
|
2013-10-21 15:08:31 -05:00
|
|
|
error!("ints={:?}", ints);
|
2012-07-24 18:23:23 -05:00
|
|
|
}
|