(/*, ...collections */)
| 663 | }, |
| 664 | |
| 665 | zipAll(/*, ...collections */) { |
| 666 | const collections = [this].concat(arrCopy(arguments)); |
| 667 | return reify(this, zipWithFactory(this, defaultZipper, collections, true)); |
| 668 | }, |
| 669 | |
| 670 | zipWith(zipper /*, ...collections */) { |
| 671 | const collections = arrCopy(arguments); |
nothing calls this directly
no test coverage detected