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

Method containsAll

src/jvm/clojure/lang/APersistentSet.java:155–162  ·  view source on GitHub ↗
(Collection c)

Source from the content-addressed store, hash-verified

153}
154
155public boolean containsAll(Collection c){
156 for(Object o : c)
157 {
158 if(!contains(o))
159 return false;
160 }
161 return true;
162}
163
164public Object[] toArray(Object[] a){
165 return RT.seqToPassedArray(seq(), a);

Callers

nothing calls this directly

Calls 1

containsMethod · 0.95

Tested by

no test coverage detected