(min: number, max: number)
| 178 | } |
| 179 | |
| 180 | takeBetween(min: number, max: number): Effect.Effect<Chunk.Chunk<A>> { |
| 181 | return Queue.takeBetween(this.backingQueue, min, max) |
| 182 | } |
| 183 | |
| 184 | takeN(n: number): Effect.Effect<Chunk.Chunk<A>> { |
| 185 | return Queue.takeN(this.backingQueue, n) |
nothing calls this directly
no test coverage detected