()
| 385 | |
| 386 | /** @internal */ |
| 387 | export const unbounded = <A>(): STM.STM<TQueue.TQueue<A>> => makeQueue<A>(Number.MAX_SAFE_INTEGER, Dropping) |
| 388 | |
| 389 | const makeQueue = <A>(requestedCapacity: number, strategy: TQueueStrategy): STM.STM<TQueue.TQueue<A>> => |
| 390 | core.map( |
nothing calls this directly
no test coverage detected