What is the clojure way of for...in ? Say I am doing some job like(maybe)
for key in map.keys do
FUNC(key)
end
to construct a new map, using key of map as new map's key, and some return values as new map's value.
What is the clojure way of for...in ? Say I am doing some job like(maybe)
for key in map.keys do
FUNC(key)
end
to construct a new map, using key of map as new map's key, and some return values as new map's value.