* Takes a number of elements from the queue between the specified minimum and * maximum. If there are fewer than the minimum number of elements available, * suspends until at least the minimum number of elements have been collected.
(min: number, max: number)
| 158 | * suspends until at least the minimum number of elements have been collected. |
| 159 | */ |
| 160 | takeBetween(min: number, max: number): Effect.Effect<Chunk.Chunk<A>> |
| 161 | |
| 162 | readonly [Unify.typeSymbol]?: unknown |
| 163 | readonly [Unify.unifySymbol]?: DequeueUnify<this> |
no outgoing calls