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

Method containsAll

src/jvm/clojure/lang/PersistentQueue.java:221–228  ·  view source on GitHub ↗
(Collection c)

Source from the content-addressed store, hash-verified

219}
220
221public boolean containsAll(Collection c){
222 for(Object o : c)
223 {
224 if(contains(o))
225 return true;
226 }
227 return false;
228}
229
230public Object[] toArray(Object[] a){
231 return RT.seqToPassedArray(seq(), a);

Callers

nothing calls this directly

Calls 1

containsMethod · 0.95

Tested by

no test coverage detected