Apply `func` to each element in `iterable`, collecting the results in a list that is returned.
(self, func, iterable, chunksize=None)
| 360 | return self.apply_async(func, args, kwds).get() |
| 361 | |
| 362 | def map(self, func, iterable, chunksize=None): |
| 363 | ''' |
| 364 | Apply `func` to each element in `iterable`, collecting the results |
| 365 | in a list that is returned. |
| 366 | ''' |
| 367 | return self._map_async(func, iterable, mapstar, chunksize).get() |
| 368 | |
| 369 | def starmap(self, func, iterable, chunksize=None): |
| 370 | ''' |