Why does metadata not work on conj-ed sequences? Clojure 1.0.0- user=> (def a (with-meta [1 2 3] {:a 2})) #'user/a user=> ^(conj a 4) {:a 2} user=> (def b (with-meta (seq [1 2 3]) {:a 2})) #'user/b user=> ^b {:a 2} user=> ^(conj b 4) nil
--~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---