Consider the following:

(cons 1 '(2 3 4)) ==> (1 2 3 4)
(cons 1 [2 3 4])  ==> (1 2 3 4)

(conj '(a b c) 1) ==> (1 a b c)
(conj '[a b c] 1) ==> [a b c 1]


================================

Now, I would like something that _always_
  * appends to the end

cons is almost what I want, except it always appends to front.

conj is not what I want -- in fact, I'm afraid of conj. Often times,
I'll run map/filter on something, and suddenly, instead of a vector, I
now have a list -- and conj changes the order of the item added.

Thus, my question: is there a builtin to _unconditinoally_ append to
the end of a list/sequence/vector?

Thanks!

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to