MCPcopy Index your code
hub / github.com/clojure/clojure / containsAll

Method containsAll

src/jvm/clojure/lang/APersistentVector.java:460–467  ·  view source on GitHub ↗
(Collection c)

Source from the content-addressed store, hash-verified

458}
459
460public boolean containsAll(Collection c){
461 for(Object o : c)
462 {
463 if(!contains(o))
464 return false;
465 }
466 return true;
467}
468
469public Object[] toArray(Object[] a){
470 return RT.seqToPassedArray(seq(), a);

Callers

nothing calls this directly

Calls 1

containsMethod · 0.95

Tested by

no test coverage detected