(self: Dequeue<A, E>)
| 1394 | * queue fails, the Effect will fail with the error. |
| 1395 | * |
| 1396 | * **Example** (Taking one value) |
| 1397 | * |
| 1398 | * ```ts import.meta.vitest |
| 1399 | * import { Cause, Effect, Exit, Queue } from "effect" |
| 1400 | * |
| 1401 | * const program = Effect.gen(function*() { |
| 1402 | * const queue = yield* Queue.bounded<string, Cause.Done>(3) |
nothing calls this directly
no test coverage detected
searching dependent graphs…