Clojure:
1:13 user=> (first (conj '(1 2 3) 4))
4
1:14 user=> (first (conj [1 2 3] 4))
1
; . . .
1:17 user=> (first (conj (seq [1 2 3]) 4))
4
I understand what is going on, but should this work differently?
|
|
Documentation for
It's more efficient to "add" elements to the end of a vector, while it's more efficient to do so at the beginning of lists. In the examples you give, Clojure's |
|||||||||
|
|
If you look at Clojure Data Structures you'll see that conj works differently with lists and vectors. conj puts the added item at the front of the list and at the end of a vector. I also suggest looking at Clojure API conj which has some nice examples. ClojureDocs overall has some very nice examples for most Clojure commands. |
|||
|
|