I have a definition:
(def class1 {:people ({:name "John" :age "25"} 
                                  {:name "Harry" :age "23"} 
                                  {:name "Peter" :age "24"})})

The result I want is a vector that looks like
[["John" "25"]
 ["Harry" "23"]
 ["Peter" "24"]]

If I call (map (-> class1 :people) [:name :age])
then I get the result ("Peter" "24"). Why do I only get the values from the 
last hashmap and not the others?

If I then call (into [] (map (-> class1 :people) [:name :age]))
then I get the result ["Peter" "24"]

What I need to do is run the 'into' function again on the other two 
hashmaps and then put the 3 results into a vector but I don't know how to 
do this.

Any help would be much appreciated

-- 
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/d/optout.

Reply via email to