Map `op`, using `mapfunc`, to each tuple derived from zipping the iterables in `vals`.
(op, *vals, mapfunc=map)
| 108 | |
| 109 | |
| 110 | def zip_with(op, *vals, mapfunc=map): |
| 111 | """ |
| 112 | Map `op`, using `mapfunc`, to each tuple derived from zipping the iterables in `vals`. |
| 113 | """ |
| 114 | return mapfunc(op, zip(*vals)) |
| 115 | |
| 116 | |
| 117 | def star_zip_with(op, *vals): |
no outgoing calls
no test coverage detected
searching dependent graphs…