Returns true if any element in this fluent iterable satisfies the predicate. Stream equivalent: stream.anyMatch(predicate) (same).
(Predicate<? super E> predicate)
| 441 | |
| 442 | |
| 443 | public final boolean anyMatch(Predicate<? super E> predicate) { |
| 444 | return Iterables.any(iterable, predicate); |
| 445 | } |
| 446 | |
| 447 | /** |
| 448 | * Returns {@code true} if every element in this fluent iterable satisfies the predicate. If this |