RosettaCodeData/Task/Function-composition/Rust/function-composition-2.rust

8 lines
182 B
Text
Raw Permalink Normal View History

2017-09-23 10:01:46 +02:00
#![feature(conservative_impl_trait)]
fn compose<'a,F,G,T,U,V>(f: F, g: G) -> impl Fn(T) -> V + 'a
where F: Fn(U) -> V + 'a,
G: Fn(T) -> U + 'a,
{
move |x| f(g(x))
}