(/*, ...collections */)
| 658 | }, |
| 659 | |
| 660 | zip(/*, ...collections */) { |
| 661 | const collections = [this].concat(arrCopy(arguments)); |
| 662 | return reify(this, zipWithFactory(this, defaultZipper, collections)); |
| 663 | }, |
| 664 | |
| 665 | zipAll(/*, ...collections */) { |
| 666 | const collections = [this].concat(arrCopy(arguments)); |
nothing calls this directly
no test coverage detected