In Haskell, I'm able to enable parallel evaluation of lists using:
map expensiveFunction list `using` parList rdeepseq
Adding only the `using` parList rdeepseq
enables the pure parallel computation and runs 4 times faster on my quad-core processor.
Is there a similar capability using SBCL?