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

Method apply

output/java_guava/1.4.17/Predicates.java:462–471  ·  view source on GitHub ↗
(@Nullable T t)

Source from the content-addressed store, hash-verified

460 }
461
462 @Override
463 public boolean apply(@Nullable T t) {
464 // Avoid using the Iterator to avoid generating garbage (issue 820).
465 for (int i = 0; i < components.size(); i++) {
466 if (components.get(i).apply(t)) {
467 return true;
468 }
469 }
470 return false;
471 }
472
473 @Override
474 public int hashCode() {

Callers

nothing calls this directly

Calls 3

sizeMethod · 0.65
applyMethod · 0.65
getMethod · 0.65

Tested by

no test coverage detected