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