MCPcopy Create free account
hub / github.com/GateNLP/gate-core / containsAll

Method containsAll

src/main/java/gate/relations/RelationSet.java:520–529  ·  view source on GitHub ↗
(Collection<?> relations)

Source from the content-addressed store, hash-verified

518 }
519
520 @Override
521 public boolean containsAll(Collection<?> relations) {
522 boolean all = true;
523
524 for(Object r : relations) {
525 all &= contains(r);
526 }
527
528 return all;
529 }
530
531 @Override
532 public boolean isEmpty() {

Callers

nothing calls this directly

Calls 1

containsMethod · 0.95

Tested by

no test coverage detected