OptionStep6<A,B,C,D,E,F> |
OptionStep6.filter(Predicate6<? super A,? super B,? super C,? super D,? super E,? super F> predicate) |
Apply the provided predicate with the previous step results.
|
OptionStep6<A,B,C,D,E,F> |
OptionStep6.filterNot(Predicate6<? super A,? super B,? super C,? super D,? super E,? super F> predicate) |
Apply the provided predicate 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> OptionStep6<A,B,C,D,E,F> |
OptionStep5.then(java.util.function.Supplier<? extends Option<? extends F>> supplier) |
Apply the provided supplier with the previous Step results.
|