nulil

使用方法: (map-str f coll)

collの各要素全てにfを適用し、結果を連結した文字列で返す。

1 user=> (use '[clojure.contrib.str-utils2 :only (map-str)])
2 nil
3 user=> (map-str #(.toUpperCase %) ["abc" "def" "ghi"])
4 "ABCDEFGHI"