(mapper, context)
| 66 | } |
| 67 | |
| 68 | map(mapper, context) { |
| 69 | const mappedSequence = mapFactory(this, mapper, context); |
| 70 | if (!this._useKeys) { |
| 71 | mappedSequence.valueSeq = () => this._iter.toSeq().map(mapper, context); |
| 72 | } |
| 73 | return mappedSequence; |
| 74 | } |
| 75 | |
| 76 | __iterate(fn, reverse) { |
| 77 | return this._iter.__iterate((v, k) => fn(v, k, this), reverse); |
nothing calls this directly
no test coverage detected