()
| 58 | } |
| 59 | |
| 60 | reverse() { |
| 61 | const reversedSequence = reverseFactory(this, true); |
| 62 | if (!this._useKeys) { |
| 63 | reversedSequence.valueSeq = () => this._iter.toSeq().reverse(); |
| 64 | } |
| 65 | return reversedSequence; |
| 66 | } |
| 67 | |
| 68 | map(mapper, context) { |
| 69 | const mappedSequence = mapFactory(this, mapper, context); |
nothing calls this directly
no test coverage detected