<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,java.util.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> java.util.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
|