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

Method containsAll

src/jvm/clojure/lang/ASeq.java:182–189  ·  view source on GitHub ↗
(Collection c)

Source from the content-addressed store, hash-verified

180}
181
182public boolean containsAll(Collection c){
183 for(Object o : c)
184 {
185 if(!contains(o))
186 return false;
187 }
188 return true;
189}
190
191public Object[] toArray(Object[] a){
192 return RT.seqToPassedArray(seq(), a);

Callers

nothing calls this directly

Calls 1

containsMethod · 0.95

Tested by

no test coverage detected