]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/vec-matching-fold.rs
rollup merge of #17326 : brson/wintest
[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:Clone>(values: &[T],
14                     initial: U,
15                     function: |partial: U, element: &T| -> U)
16                     -> U {
17     match values {
18         [ref head, tail..] =>
19             foldl(tail, function(initial, head), function),
20         [] => initial.clone()
21     }
22 }
23
24 fn foldr<T,U:Clone>(values: &[T],
25                     initial: U,
26                     function: |element: &T, partial: U| -> U)
27                     -> U {
28     match values {
29         [head.., ref tail] =>
30             foldr(head, function(tail, initial), function),
31         [] => initial.clone()
32     }
33 }
34
35 pub fn main() {
36     let x = [1i, 2, 3, 4, 5];
37
38     let product = foldl(x, 1i, |a, b| a * *b);
39     assert_eq!(product, 120);
40
41     let sum = foldr(x, 0i, |a, b| *a + b);
42     assert_eq!(sum, 15);
43 }