RosettaCodeData/Task/Function-composition/Rust/function-composition-1.rs

7 lines
155 B
Rust

fn compose<'a,F,G,T,U,V>(f: F, g: G) -> Box<Fn(T) -> V + 'a>
where F: Fn(U) -> V + 'a,
G: Fn(T) -> U + 'a,
{
Box::new(move |x| f(g(x)))
}