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