Returns true if every element in this fluent iterable satisfies the predicate. If this fluent iterable is empty, true is returned. Stream equivalent: stream.allMatch(predicate) (same).
(Predicate<? super E> predicate)
| 453 | |
| 454 | |
| 455 | public final boolean allMatch(Predicate<? super E> predicate) { |
| 456 | return Iterables.all(iterable, predicate); |
| 457 | } |
| 458 | |
| 459 | /** |
| 460 | * Returns an {@link Optional} containing the first element in this fluent iterable that satisfies |