2012-04-11 23:45:18 -05:00
|
|
|
// This test had to do with an outdated version of the iterable iface.
|
|
|
|
// However, the condition it was testing seemed complex enough to
|
|
|
|
// warrant still having a test, so I inlined the old definitions.
|
|
|
|
|
|
|
|
iface iterable<A> {
|
|
|
|
fn iter(blk: fn(A));
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<A> of iterable<A> for fn@(fn(A)) {
|
|
|
|
fn iter(blk: fn(A)) { self(blk); }
|
|
|
|
}
|
|
|
|
|
|
|
|
impl of iterable<uint> for fn@(fn(uint)) {
|
|
|
|
fn iter(blk: fn(&&uint)) { self { |i| blk(i) } }
|
|
|
|
}
|
|
|
|
|
|
|
|
fn filter<A,IA:iterable<A>>(self: IA, prd: fn@(A) -> bool, blk: fn(A)) {
|
|
|
|
self.iter {|a|
|
|
|
|
if prd(a) { blk(a) }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn foldl<A,B,IA:iterable<A>>(self: IA, +b0: B, blk: fn(B, A) -> B) -> B {
|
|
|
|
let mut b <- b0;
|
|
|
|
self.iter { |a|
|
|
|
|
b <- blk(b, a);
|
|
|
|
}
|
|
|
|
ret b;
|
|
|
|
}
|
2012-04-23 02:25:14 -05:00
|
|
|
|
2012-05-26 02:32:08 -05:00
|
|
|
fn range(lo: uint, hi: uint, it: fn(uint)) {
|
|
|
|
let mut i = lo;
|
|
|
|
while i < hi {
|
|
|
|
it(i);
|
|
|
|
i += 1u;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-04-23 02:25:14 -05:00
|
|
|
fn main() {
|
2012-05-26 02:32:08 -05:00
|
|
|
let range = bind range(0u, 1000u, _);
|
2012-04-11 23:45:18 -05:00
|
|
|
let filt = bind filter(
|
|
|
|
range,
|
|
|
|
{|&&n: uint| n % 3u != 0u && n % 5u != 0u },
|
|
|
|
_);
|
|
|
|
let sum = foldl(filt, 0u) {|accum, &&n: uint| accum + n };
|
2012-04-23 02:25:14 -05:00
|
|
|
|
|
|
|
io::println(#fmt("%u", sum));
|
|
|
|
}
|