boolean |
Streams.FailableStream.allMatch(Functions.FailablePredicate<O,?> predicate) |
Deprecated.
Returns whether all elements of this stream match the provided predicate.
|
boolean |
Streams.FailableStream.anyMatch(Functions.FailablePredicate<O,?> predicate) |
Deprecated.
Returns whether any elements of this stream match the provided
predicate.
|
static <I> java.util.function.Predicate<I> |
Functions.asPredicate(Functions.FailablePredicate<I,?> predicate) |
Deprecated.
|
Streams.FailableStream<O> |
Streams.FailableStream.filter(Functions.FailablePredicate<O,?> predicate) |
Deprecated.
Returns a FailableStream consisting of the elements of this stream that match
the given FailablePredicate.
|
static <O,T extends java.lang.Throwable> boolean |
Functions.test(Functions.FailablePredicate<O,T> predicate,
O object) |
Deprecated.
Tests a predicate and rethrows any exception as a RuntimeException .
|