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,
Available on crate feature
advanced
only.Expand description
Maps the output of an Operation
using the given function.