MCPcopy Index your code
hub / github.com/antlr/codebuff / filter

Method filter

output/java_guava/1.4.17/FluentIterable.java:411–413  ·  view source on GitHub ↗

Returns the elements from this fluent iterable that satisfy a predicate. The resulting fluent iterable's iterator does not support remove(). Stream equivalent: stream.filter(predicate) (same).

(Predicate<? super E> predicate)

Source from the content-addressed store, hash-verified

409
410
411 public final FluentIterable<E> filter(Predicate<? super E> predicate) {
412 return from(Iterables.filter(iterable, predicate));
413 }
414
415 /**
416 * Returns the elements from this fluent iterable that are instances of class {@code type}.

Callers

nothing calls this directly

Calls 2

fromMethod · 0.95
filterMethod · 0.95

Tested by

no test coverage detected