We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd781a7 commit f4a69ceCopy full SHA for f4a69ce
Clojure/Clojure.Source/clojure/core.clj
@@ -73,10 +73,12 @@
73
rest (fn ^:static rest [x] (. clojure.lang.RT (more x))))
74
75
(def
76
- ^{:arglists '([coll x] [coll x & xs])
+ ^{:arglists '([] [coll] [coll x] [coll x & xs])
77
:doc "conj[oin]. Returns a new collection with the xs
78
- 'added'. (conj nil item) returns (item). The 'addition' may
79
- happen at different 'places' depending on the concrete type."
+ 'added'. (conj nil item) returns (item).
+ (conj coll) returns coll. (conj) returns [].
80
+ The 'addition' may happen at different 'places' depending
81
+ on the concrete type."
82
:added "1.0"
83
:static true}
84
conj (fn ^:static conj
0 commit comments