]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/vec-matching-fold.rs
rollup merge of #20258: sanxiyn/show-span-2
[rust.git] / src / test / run-pass / vec-matching-fold.rs
1 // Copyright 2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 #![feature(advanced_slice_patterns)]
12
13 fn foldl<T, U, F>(values: &[T],
14                   initial: U,
15                   mut function: F)
16                   -> U where
17     U: Clone,
18     F: FnMut(U, &T) -> U,
19 {
20     match values {
21         [ref head, tail..] =>
22             foldl(tail, function(initial, head), function),
23         [] => initial.clone()
24     }
25 }
26
27 fn foldr<T, U, F>(values: &[T],
28                   initial: U,
29                   mut function: F)
30                   -> U where
31     U: Clone,
32     F: FnMut(&T, U) -> U,
33 {
34     match values {
35         [head.., ref tail] =>
36             foldr(head, function(tail, initial), function),
37         [] => initial.clone()
38     }
39 }
40
41 pub fn main() {
42     let x = &[1i, 2, 3, 4, 5];
43
44     let product = foldl(x, 1i, |a, b| a * *b);
45     assert_eq!(product, 120);
46
47     let sum = foldr(x, 0i, |a, b| *a + b);
48     assert_eq!(sum, 15);
49 }