(this: Chunk<A>)
| 142 | return isChunk(that) && _equivalence(this, that) |
| 143 | }, |
| 144 | [Hash.symbol]<A>(this: Chunk<A>): number { |
| 145 | return Hash.cached(this, Hash.array(toReadonlyArray(this))) |
| 146 | }, |
| 147 | [Symbol.iterator]<A>(this: Chunk<A>): Iterator<A> { |
| 148 | switch (this.backing._tag) { |
| 149 | case "IArray": { |
nothing calls this directly
no test coverage detected