(s)
| 3640 | return isKeyed(s) ? KeyedIterable : isIndexed(s) ? IndexedIterable : SetIterable |
| 3641 | } |
| 3642 | function makeSequence(s) { |
| 3643 | return Object.create( |
| 3644 | (isKeyed(s) ? KeyedSeq : isIndexed(s) ? IndexedSeq : SetSeq).prototype |
| 3645 | ) |
| 3646 | } |
| 3647 | function cacheResultThrough() { |
| 3648 | return this._iter.cacheResult |
| 3649 | ? (this._iter.cacheResult(), (this.size = this._iter.size), this) |
no test coverage detected