Function transaction::and_then [] [src]

pub fn and_then<Ctx, A, F, B>(a: A, f: F) -> AndThen<A::Tx, F, B> where
    A: IntoTransaction<Ctx>,
    B: IntoTransaction<Ctx, Err = A::Err>,
    F: Fn(A::Item) -> B,