rust/src/test/auxiliary/cci_impl_lib.rs
2012-03-02 06:47:25 -08:00

10 lines
172 B
Rust

impl helpers for uint {
#[inline]
fn to(v: uint, f: fn(uint)) {
let i = self;
while i < v {
f(i);
i += 1u;
}
}
}