(require '[clojure.contrib.str-utils2 :as s]) user=> (s/map-str s/upper-case ["foo" "bar" "zot"]) "FOOBARZOT"
(defn ^String map-str "Apply f to each element of coll, concatenate all results into a String." [f coll] (apply str (map f coll)))
Comments top
No comments for map-str. Log in to add a comment.