I read an article that claims that closures (or "blocks") are a useful weapon in the "War on Multicores", because
[...] they allow you to create units of work, which each have their own copy of the stack, and don’t step on each others toes as a result. What’s more, you can pass these units around like they are values, when in actual fact they contain a whole stack of values (pun intended), and executable code to perform some operation.
Now, I am not debating the usefulness of closures in general and possibly also for concurrent programming in a shared-memory model, but what's the difference with a thread that only acts on local data (or processes, or actors, or ...)?
Isn't a closure on its own as useful for concurrent programming as a thread without a scheduler?
What with closures that have non-local side effects?
