(self: Enqueue<A, E>)
| 1075 | * yield* Queue.offer(queue, 2) |
| 1076 | * |
| 1077 | * // Interrupt gracefully - no more offers accepted, but messages can be consumed |
| 1078 | * const interrupted = yield* Queue.interrupt(queue) |
| 1079 | * |
| 1080 | * // Trying to offer more messages will return false |
| 1081 | * const offerResult = yield* Queue.offer(queue, 3) |
nothing calls this directly
no test coverage detected
searching dependent graphs…