Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've just started learning Clojure, if I define the following map:

(def distributions {:normal {:title "Normal" :mean 0 :sd 1}
                    :beta   {:title "Beta" :a 1 :b 3}
                    :gamma  {:title "Gamma" :rate 1/2 :shape 1}})

how would I write (defn get-titles [] ...) a function that would return ("Normal", "Beta", "Gamma")?

share|improve this question

2 Answers

up vote 11 down vote accepted
(defn get-distr-titles [] (map :title (vals distr)))
share|improve this answer
2  
(map :title (vals distr)) – amalloy Jul 5 '11 at 8:17
@ammalloy: Thanks! – Goran Jovic Jul 5 '11 at 8:26

Alternatively: (for [[k v] distr] (:title v))

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.