Like `map()` method but the elements of the `iterable` are expected to be iterables as well and will be unpacked as arguments. Hence `func` and (a, b) becomes func(a, b).
(self, func, iterable, chunksize=None)
| 367 | return self._map_async(func, iterable, mapstar, chunksize).get() |
| 368 | |
| 369 | def starmap(self, func, iterable, chunksize=None): |
| 370 | ''' |
| 371 | Like `map()` method but the elements of the `iterable` are expected to |
| 372 | be iterables as well and will be unpacked as arguments. Hence |
| 373 | `func` and (a, b) becomes func(a, b). |
| 374 | ''' |
| 375 | return self._map_async(func, iterable, starmapstar, chunksize).get() |
| 376 | |
| 377 | def starmap_async(self, func, iterable, chunksize=None, callback=None, |
| 378 | error_callback=None): |