parallel-map
builtin-function
(parallel-map func seq)
Returns a lazy sequence where each element of seq is transformed by the
function func. Uses the Task Parallel Library.
make-html > (parallel-map length (vector "aap" "noot" "mies"))
it: (3 4 4)
make-html > (parallel-map #(odd? (length %1)) (vector "aap" "noot" "mies"))
it: (true false false)