Fork me on GitHub
#clojuredesign-podcast
<
2020-11-16
>
genekim17:11:37

So many great insights in the latest podcast! Thanks @nate and @neumann !! Doseq! I finally understand!

👍 3
neumann17:11:52

@U6VPZS1EK That's great to hear! You're welcome! For me, dorun has been the most baffling. I'm sure there is a great use case for it out there, but I still haven't found it useful in production code.

Bob B19:11:37

this is 100% speculation, but looking at core.clj, doall is defined in terms of dorun, so the impression that I get is that dorun can process the whole seq, even if the whole seq doesn't fit in memory, while doall is basically "dorun and then return the realized seq" (which of course means the whole realization needs to fit in memory). and apparently run! was introduced in 1.7, so perhaps dorun was more directly useful before its introduction

Bob B19:11:58

One little laziness 'corner case' (maybe) that I've stumbled over once or twice is that using something lazy in a recur can lead to a StackOverflow for a sufficiently large number of recursions. For example, if you (recur (map inc coll)), that can SO, but throwing a doall in there (or using mapv if you can work with a vector) eliminates it

lodin21:11:57

@highpressurecarsalesm Are you by any chance using concat in that function? If so, then that is probably the culprit, not recur.

Bob B21:11:32

nope... here's a trivial repro (it's obviously not useful code):

(loop [a [10000]]
    (if (zero? (first a))
      a
      (recur (map dec a))))

lodin22:11:51

Ah, yeah. That stacks thunks and will SO.