(map vector [1 2 3] [4 5 6] [7 8 9]) gives back ([1 4 7] [2 5 8] [3 6 9]) but if I have a function that returns the list: '([1 2 3] [4 5 6] [7 8 9]) and call map vector with the list, then I no longer get ([1 4 7] [2 5 8] [3 6 9])
i.e. (def x '([1 2 3] [4 5 6] [7 8 9])) (map vector x) ==>([[1 2 3]] [[4 5 6]] [[7 8 9]]) so is there a way to effectively expand the argument x (map vector x) to be (map vector [1 2 3] [4 5 6] [7 8 9]) -- 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