blob: a7d6d2628b919685a1d85bc29432aaddb98b1eb2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
//@ run-pass
//@ compile-flags: -Zmir-opt-level=3
trait IterExt: Iterator {
fn fold_ex<B, F>(mut self, init: B, mut f: F) -> B
where
Self: Sized,
F: FnMut(B, Self::Item) -> B,
{
let mut accum = init;
while let Some(x) = self.next() {
accum = f(accum, x);
}
accum
}
}
impl<T: Iterator> IterExt for T {}
fn main() {
let test = &["\n"];
test.iter().fold_ex(String::new(), |_, b| b.to_string());
}
|