I\'m a new clojure programmer.
Given...
{:foo \"bar\"}
Is there a way to retrieve the name of the key with a value \"bar\"?
As in many other cases you can use for:
(def hm {:foo "bar"}) (for [[k v] hm :when (= v "bar")] k)