OptionStep5<A,B,C,D,E> |
OptionStep5.filter(Predicate5<? super A,? super B,? super C,? super D,? super E> predicate) |
Apply the provided predicate with the previous step results.
|
OptionStep5<A,B,C,D,E> |
OptionStep5.filterNot(Predicate5<? super A,? super B,? super C,? super D,? super E> predicate) |
Apply the provided predicate with the previous step results.
|
<E> OptionStep5<A,B,C,D,E> |
OptionStep4.then(Function4<? super A,? super B,? super C,? super D,? extends Option<? extends E>> functor) |
Apply the provided function with the previous Step results.
|
<E> OptionStep5<A,B,C,D,E> |
OptionStep4.then(java.util.function.Supplier<? extends Option<? extends E>> supplier) |
Apply the provided supplier with the previous Step results.
|