/*! The iteration traits and common implementation */ #[forbid(deprecated_mode)]; #[forbid(deprecated_pattern)]; use cmp::{Eq, Ord}; /// A function used to initialize the elements of a sequence pub type InitOp = &fn(uint) -> T; pub trait BaseIter { pure fn each(blk: fn(v: &A) -> bool); pure fn size_hint() -> Option; } pub trait ExtendedIter { pure fn eachi(blk: fn(uint, v: &A) -> bool); pure fn all(blk: fn(&A) -> bool) -> bool; pure fn any(blk: fn(&A) -> bool) -> bool; pure fn foldl(b0: B, blk: fn(&B, &A) -> B) -> B; pure fn position(f: fn(&A) -> bool) -> Option; } pub trait EqIter { pure fn contains(x: &A) -> bool; pure fn count(x: &A) -> uint; } pub trait Times { pure fn times(it: fn() -> bool); } pub trait CopyableIter { pure fn filter_to_vec(pred: fn(a: A) -> bool) -> ~[A]; pure fn map_to_vec(op: fn(v: A) -> B) -> ~[B]; pure fn flat_map_to_vec>(op: fn(A) -> IB) -> ~[B]; pure fn to_vec() -> ~[A]; pure fn find(p: fn(a: A) -> bool) -> Option; } pub trait CopyableOrderedIter { pure fn min() -> A; pure fn max() -> A; } pub trait CopyableNonstrictIter { // Like "each", but copies out the value. If the receiver is mutated while // iterating over it, the semantics must not be memory-unsafe but are // otherwise undefined. pure fn each_val(&const self, f: &fn(A) -> bool); } // A trait for sequences that can be by imperatively pushing elements // onto them. pub trait Buildable { /** * Builds a buildable sequence by calling a provided function with * an argument function that pushes an element onto the back of * the sequence. * This version takes an initial size for the sequence. * * # Arguments * * * size - A hint for an initial size of the sequence * * builder - A function that will construct the sequence. It recieves * as an argument a function that will push an element * onto the sequence being constructed. */ static pure fn build_sized(size: uint, builder: fn(push: pure fn(v: A))) -> self; } pub pure fn eachi>(self: &IA, blk: fn(uint, v: &A) -> bool) { let mut i = 0; for self.each |a| { if !blk(i, a) { break; } i += 1; } } pub pure fn all>(self: &IA, blk: fn(&A) -> bool) -> bool { for self.each |a| { if !blk(a) { return false; } } return true; } pub pure fn any>(self: &IA, blk: fn(&A) -> bool) -> bool { for self.each |a| { if blk(a) { return true; } } return false; } pub pure fn filter_to_vec>( self: &IA, prd: fn(a: A) -> bool) -> ~[A] { do vec::build_sized_opt(self.size_hint()) |push| { for self.each |a| { if prd(*a) { push(*a); } } } } pub pure fn map_to_vec>(self: &IA, op: fn(v: A) -> B) -> ~[B] { do vec::build_sized_opt(self.size_hint()) |push| { for self.each |a| { push(op(*a)); } } } pub pure fn flat_map_to_vec,IB:BaseIter>( self: &IA, op: fn(a: A) -> IB) -> ~[B] { do vec::build |push| { for self.each |a| { for op(*a).each |b| { push(*b); } } } } pub pure fn foldl>(self: &IA, b0: B, blk: fn(&B, &A) -> B) -> B { let mut b = move b0; for self.each |a| { b = blk(&b, a); } move b } pub pure fn to_vec>(self: &IA) -> ~[A] { foldl::(self, ~[], |r, a| vec::append(copy (*r), ~[*a])) } pub pure fn contains>(self: &IA, x: &A) -> bool { for self.each |a| { if *a == *x { return true; } } return false; } pub pure fn count>(self: &IA, x: &A) -> uint { do foldl(self, 0) |count, value| { if *value == *x { *count + 1 } else { *count } } } pub pure fn position>(self: &IA, f: fn(&A) -> bool) -> Option { let mut i = 0; for self.each |a| { if f(a) { return Some(i); } i += 1; } return None; } // note: 'rposition' would only make sense to provide with a bidirectional // iter interface, such as would provide "reach" in addition to "each". as is, // it would have to be implemented with foldr, which is too inefficient. pub pure fn repeat(times: uint, blk: fn() -> bool) { let mut i = 0; while i < times { if !blk() { break } i += 1; } } pub pure fn min>(self: &IA) -> A { match do foldl::,IA>(self, None) |a, b| { match a { &Some(ref a_) if *a_ < *b => { *(move a) } _ => Some(*b) } } { Some(move val) => val, None => fail ~"min called on empty iterator" } } pub pure fn max>(self: &IA) -> A { match do foldl::,IA>(self, None) |a, b| { match a { &Some(ref a_) if *a_ > *b => { *(move a) } _ => Some(*b) } } { Some(move val) => val, None => fail ~"max called on empty iterator" } } pub pure fn find>(self: &IA, p: fn(a: A) -> bool) -> Option { for self.each |i| { if p(*i) { return Some(*i) } } return None; } // Some functions for just building /** * Builds a sequence by calling a provided function with an argument * function that pushes an element to the back of a sequence. * * # Arguments * * * builder - A function that will construct the sequence. It recieves * as an argument a function that will push an element * onto the sequence being constructed. */ #[inline(always)] pub pure fn build>(builder: fn(push: pure fn(v: A))) -> B { build_sized(4, builder) } /** * Builds a sequence by calling a provided function with an argument * function that pushes an element to the back of a sequence. * This version takes an initial size for the sequence. * * # Arguments * * * size - An option, maybe containing initial size of the sequence * to reserve * * builder - A function that will construct the sequence. It recieves * as an argument a function that will push an element * onto the sequence being constructed. */ #[inline(always)] pub pure fn build_sized_opt>( size: Option, builder: fn(push: pure fn(v: A))) -> B { build_sized(size.get_default(4), builder) } // Functions that combine iteration and building /// Apply a function to each element of an iterable and return the results pub fn map,U,BU: Buildable>(v: &IT, f: fn(&T) -> U) -> BU { do build_sized_opt(v.size_hint()) |push| { for v.each() |elem| { push(f(elem)); } } } /** * Creates and initializes a generic sequence from a function * * Creates a generic sequence of size `n_elts` and initializes the elements * to the value returned by the function `op`. */ pub pure fn from_fn>(n_elts: uint, op: InitOp) -> BT { do build_sized(n_elts) |push| { let mut i: uint = 0u; while i < n_elts { push(op(i)); i += 1u; } } } /** * Creates and initializes a generic sequence with some element * * Creates an immutable vector of size `n_elts` and initializes the elements * to the value `t`. */ pub pure fn from_elem>(n_elts: uint, t: T) -> BT { do build_sized(n_elts) |push| { let mut i: uint = 0; while i < n_elts { push(t); i += 1; } } } /// Appending two generic sequences #[inline(always)] pub pure fn append,BT: Buildable>( lhs: &IT, rhs: &IT) -> BT { let size_opt = lhs.size_hint().chain_ref( |sz1| rhs.size_hint().map(|sz2| *sz1+*sz2)); do build_sized_opt(size_opt) |push| { for lhs.each |x| { push(*x); } for rhs.each |x| { push(*x); } } } /// Copies a generic sequence, possibly converting it to a different /// type of sequence. #[inline(always)] pub pure fn copy_seq,BT: Buildable>( v: &IT) -> BT { do build_sized_opt(v.size_hint()) |push| { for v.each |x| { push(*x); } } }