fs icon indicating copy to clipboard operation
fs copied to clipboard

pmap better than map for "walk" for processing images

Open lkrubner opened this issue 11 years ago • 2 comments

About this function:

(defn walk "Lazily walk depth-first over the directory structure starting at 'path' calling 'func' with three arguments [root dirs files]. Returns a sequence of the results." [func path](map #%28apply func %%29 %28iterate-dir path%29))

If I want to iterate over a directory of images, and generate a thumbnail for those images, then I should use "pmap" rather than "map". I am writing a custom version of this function for myself, but perhaps you could make "map" a variable?

lkrubner avatar Feb 07 '14 04:02 lkrubner

Just pass list as func, and then pmap over the resulting structure to do whatever?

amalloy avatar Feb 07 '14 06:02 amalloy

Great idea.

lkrubner avatar Feb 09 '14 05:02 lkrubner