user=> (map val {:a 1 :b 2}) (1 2)
(val (first {:one :two})) :two
;syntactic sugar for (val) (:doc (meta #'meta))
Returns a sequence of the map's values.
(defn val "Returns the value in the map entry." {:added "1.0"} [^java.util.Map$Entry e] (. e (getValue)))
Comments top
No comments for val. Log in to add a comment.