I want to repeatedly executes a function for its side-effects on a collection. The common way is:

(defn my-func [x] (println x))
(doseq [x '(1 2 3) ]
       (my-func x))

But the x variable is a little bit cumbersome. I prefer the following code:

 ((comp doall map) my-func '(1 2 3))

Do you think this is an elegant solution?

link|improve this question

feedback

3 Answers

up vote 5 down vote accepted

clojure.core/dorun is better than doall, because doall holds the whole sequence in memory in order to return it to you. dorun returns nil, just as doseq does. To say that the language core "should" offer something like domap is a bit aggressive - for a language that discourages mutation and side effects, Clojure already has plenty of functions that are very close to what you want and are easy to combine.

link|improve this answer
feedback

I actually quite like:

((comp dorun map) my-func '(1 2 3))

It's a good example of "point free style" in Clojure. The higher order function (comp dorun map) is potentially useful elsewhere.... you might name it "apply-to-sequence" or something similar.

You could also use the following (amalloy's suggestion) which is also points-free and probably a bit more idiomatic:

(dorun (map my-func '(1 2 3)))

However be aware that both solutions using map will construct an intermediate (lazy) sequence to hold the result of the map function. This implies a small amount of extra overhead, so if you care about performance then I think the standard way using doseq is better, i.e..

 (doseq [x '(1 2 3)] (my-func x))
link|improve this answer
This is no fewer points than (dorun (map my-func '(1 2 3))), and the latter is surely more common. I guess I don't have a strong opinion about which is more readable, but this doesn't really exemplify point-free style. – amalloy Feb 5 at 22:30
Agree, (dorun (map my-func '(1 2 3)) is also point-free example and perhaps a bit more idiomatic. Included both in the answer. – mikera Feb 6 at 0:55
feedback

Why don't you just write a function that takes a function and a sequence and applies the function to the sequence via doseq.

e.g.

user=> (defn doseqf [fun seq] (doseq [x seq] (fun x)))
#'user/doseqf
user=> (doseqf println '(1 2 3))
1
2
3
nil
link|improve this answer
Indeed, it works but I want to refrain from writing functions that should be offered by the language core libraries. – viebel Feb 4 at 19:51
1  
If you think it should be in the core library, then you should open a bug report and offer the fix. – Bill Feb 4 at 23:12
1  
That's good advice in general, but this function isn't getting into clojure.core in a million years. Nobody wants to further pollute the core namespace for something as trivial as (comp dorun map). – amalloy Feb 5 at 0:51
I agree 100% w/amalloy. So, looking at it, map applies the function to the sequence, and dorun forces the evaluation, correct? I could have used that a couple of weeks ago. – Bill Feb 5 at 5:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.