Uses of Interface
io.atlassian.fugue.extensions.functions.Function5

Packages that use Function5
Package
Description
 
  • Uses of Function5 in io.atlassian.fugue.extensions.step

    Methods in io.atlassian.fugue.extensions.step with parameters of type Function5
    Modifier and Type
    Method
    Description
    <F, LL extends LEFT>
    EitherStep6<A,B,C,D,E,F,LEFT>
    EitherStep5.then(Function5<? super A,? super B,? super C,? super D,? super E,Either<LL,F>> functor)
    Apply the provided function with the previous Step results.
    <F> OptionalStep6<A,B,C,D,E,F>
    OptionalStep5.then(Function5<? super A,? super B,? super C,? super D,? super E,Optional<F>> functor)
    Apply the provided function with the previous Step results.
    <F> OptionStep6<A,B,C,D,E,F>
    OptionStep5.then(Function5<? super A,? super B,? super C,? super D,? super E,? extends Option<? extends F>> functor)
    Apply the provided function with the previous Step results.
    <F> TryStep6<A,B,C,D,E,F>
    TryStep5.then(Function5<? super A,? super B,? super C,? super D,? super E,Try<F>> functor)
    Apply the provided function with the previous Step results.
    <Z> Either<LEFT,Z>
    EitherStep5.yield(Function5<? super A,? super B,? super C,? super D,? super E,Z> functor)
    Terminating step expression, that will provide the previous steps to this function and return the result as a Right
    <Z> Optional<Z>
    OptionalStep5.yield(Function5<? super A,? super B,? super C,? super D,? super E,Z> functor)
    Terminating step expression, that will provide the previous steps to this function and return the result as a of
    <Z> Option<Z>
    OptionStep5.yield(Function5<? super A,? super B,? super C,? super D,? super E,Z> functor)
    Terminating step expression, that will provide the previous steps to this function and return the result as a some
    <Z> Try<Z>
    TryStep5.yield(Function5<? super A,? super B,? super C,? super D,? super E,Z> functor)
    Terminating step expression, that will provide the previous steps to this function and return the result as a Success