MCPcopy Create free account
hub / github.com/antlr/codebuff / anyMatch

Method anyMatch

output/java_guava/1.4.17/FluentIterable.java:443–445  ·  view source on GitHub ↗

Returns true if any element in this fluent iterable satisfies the predicate. Stream equivalent: stream.anyMatch(predicate) (same).

(Predicate<? super E> predicate)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

anyMethod · 0.95

Tested by

no test coverage detected