2016-09-28 11:22:09 -05:00
|
|
|
use std::fmt::Debug;
|
|
|
|
|
|
|
|
fn foldl<T, U, F>(values: &[T],
|
|
|
|
initial: U,
|
|
|
|
mut function: F)
|
|
|
|
-> U where
|
|
|
|
U: Clone+Debug, T:Debug,
|
|
|
|
F: FnMut(U, &T) -> U,
|
|
|
|
{ match values {
|
2022-04-30 12:14:24 -05:00
|
|
|
[head, tail @ ..] =>
|
2016-09-28 11:22:09 -05:00
|
|
|
foldl(tail, function(initial, head), function),
|
2022-04-30 12:14:24 -05:00
|
|
|
[] => {
|
2016-09-28 11:22:09 -05:00
|
|
|
let res = initial.clone(); res
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn foldr<T, U, F>(values: &[T],
|
|
|
|
initial: U,
|
|
|
|
mut function: F)
|
|
|
|
-> U where
|
|
|
|
U: Clone,
|
|
|
|
F: FnMut(&T, U) -> U,
|
|
|
|
{
|
|
|
|
match values {
|
2022-04-30 12:14:24 -05:00
|
|
|
[head @ .., tail] =>
|
2016-09-28 11:22:09 -05:00
|
|
|
foldr(head, function(tail, initial), function),
|
2022-04-30 12:14:24 -05:00
|
|
|
[] => {
|
2016-09-28 11:22:09 -05:00
|
|
|
let res = initial.clone(); res
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn main() {
|
|
|
|
let x = &[1, 2, 3, 4, 5];
|
|
|
|
|
|
|
|
let product = foldl(x, 1, |a, b| a * *b);
|
|
|
|
assert_eq!(product, 120);
|
|
|
|
|
|
|
|
let sum = foldr(x, 0, |a, b| *a + b);
|
|
|
|
assert_eq!(sum, 15);
|
|
|
|
}
|