Examples:
Modules:
par()
Profiling:
Links:
Versions:
Parallel execution of f on each element of args and kwargs
>>> par(lambda x : x**2, range(0,5)) [0, 1, 4, 9, 16]