Function iced_core::widget::operation::map

source ·
pub fn map<A, B>(
    operation: Box<dyn Operation<A>>,
    f: impl Fn(A) -> B + 'static
) -> impl Operation<B>
where A: 'static, B: 'static,
Expand description

Maps the output of an Operation using the given function.