// This makes use of a clever hack that brson came up with to // workaround our lack of traits and lack of macros. See core.{rc,rs} for // how this file is used. #[warn(deprecated_mode)]; use cmp::{Eq, Ord}; use inst::{IMPL_T, EACH, SIZE_HINT}; export extensions; impl IMPL_T: iter::BaseIter { pure fn each(blk: fn(v: &A) -> bool) { EACH(&self, blk) } pure fn size_hint() -> Option { SIZE_HINT(&self) } } impl IMPL_T: iter::ExtendedIter { pure fn eachi(blk: fn(uint, v: &A) -> bool) { iter::eachi(&self, blk) } pure fn all(blk: fn(A) -> bool) -> bool { iter::all(self, blk) } pure fn any(blk: fn(A) -> bool) -> bool { iter::any(self, blk) } pure fn foldl(+b0: B, blk: fn(B, A) -> B) -> B { iter::foldl(self, move b0, blk) } pure fn position(f: fn(A) -> bool) -> Option { iter::position(self, f) } } impl IMPL_T: iter::EqIter { pure fn contains(x: &A) -> bool { iter::contains(self, x) } pure fn count(x: &A) -> uint { iter::count(self, x) } } impl IMPL_T: iter::CopyableIter { pure fn filter_to_vec(pred: fn(A) -> bool) -> ~[A] { iter::filter_to_vec(self, pred) } pure fn map_to_vec(op: fn(v: &A) -> B) -> ~[B] { iter::map_to_vec(self, op) } pure fn to_vec() -> ~[A] { iter::to_vec(self) } // FIXME--bug in resolve prevents this from working (#2611) // fn flat_map_to_vec>(op: fn(A) -> IB) -> ~[B] { // iter::flat_map_to_vec(self, op) // } pure fn find(p: fn(A) -> bool) -> Option { iter::find(self, p) } } impl IMPL_T: iter::CopyableOrderedIter { pure fn min() -> A { iter::min(self) } pure fn max() -> A { iter::max(self) } }