(zipper /*, ...collections */)
| 668 | }, |
| 669 | |
| 670 | zipWith(zipper /*, ...collections */) { |
| 671 | const collections = arrCopy(arguments); |
| 672 | collections[0] = this; |
| 673 | return reify(this, zipWithFactory(this, zipper, collections)); |
| 674 | }, |
| 675 | }); |
| 676 | |
| 677 | const IndexedCollectionPrototype = IndexedCollection.prototype; |
nothing calls this directly
no test coverage detected