(min: number, max: number)
| 375 | } |
| 376 | |
| 377 | takeBetween(min: number, max: number): Effect.Effect<Chunk.Chunk<B>> { |
| 378 | return pipe(Queue.takeBetween(this.dequeue, min, max), Effect.map(Chunk.map((a) => this.f(a)))) |
| 379 | } |
| 380 | |
| 381 | takeN(n: number): Effect.Effect<Chunk.Chunk<B>> { |
| 382 | return pipe(Queue.takeN(this.dequeue, n), Effect.map(Chunk.map((a) => this.f(a)))) |
nothing calls this directly
no test coverage detected