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

Method conj

src/jvm/clojure/lang/RT.java:694–698  ·  view source on GitHub ↗
(IPersistentCollection coll, Object x)

Source from the content-addressed store, hash-verified

692}
693
694static public IPersistentCollection conj(IPersistentCollection coll, Object x){
695 if(coll == null)
696 return new PersistentList(x);
697 return coll.cons(x);
698}
699
700static public ISeq cons(Object x, Object coll){
701 //ISeq y = seq(coll);

Callers 8

buildThunkMethod · 0.95
parseMethod · 0.95
parseMethod · 0.95
LocalBindingExprMethod · 0.95
registerConstantMethod · 0.95
buildMethod · 0.95
preferMethodMethod · 0.95

Calls 1

consMethod · 0.65

Tested by

no test coverage detected