File tree
Expand file treeCollapse file tree1 file changed
+4
-2
lines changed Expand file treeCollapse file tree1 file changed
+4
-2
lines changed Original file line number | Diff line number | Diff line change |
---|
@@ -1795,8 +1795,10 @@ reduces them without incurring seq initialization"
|
1795 | 1795 |
|
1796 | 1796 | (defn conj
|
1797 | 1797 | "conj[oin]. Returns a new collection with the xs
|
1798 |
| -'added'. (conj nil item) returns (item). The 'addition' may |
1799 |
| -happen at different 'places' depending on the concrete type." |
| 1798 | +'added'. (conj nil item) returns (item). |
| 1799 | +(conj coll) returns coll. (conj) returns []. |
| 1800 | +The 'addition' may happen at different 'places' depending |
| 1801 | +on the concrete type." |
1800 | 1802 | ([] [])
|
1801 | 1803 | ([coll] coll)
|
1802 | 1804 | ([coll x]
|
|
You can’t perform that action at this time.
0 commit comments