pub fn map<A, B>( operation: impl Operation<A>, f: impl Fn(A) -> B + Send + Sync + 'static, ) -> impl Operation<B>where A: 'static, B: 'static,
Maps the output of an Operation using the given function.
Operation