Skip to main content

except_t_fmap

Function except_t_fmap 

Source
pub fn except_t_fmap<E: 'static, M: FunctorSt, A: 'static, B: 'static>(
    fa: M::Of<Result<A, E>>,
    f: impl Fn(A) -> B + 'static,
) -> M::Of<Result<B, E>>
Expand description

ExceptT fmap: apply a function to the Ok value.