(requestedCapacity: number)
| 264 | |
| 265 | /** @internal */ |
| 266 | export const dropping = <A>(requestedCapacity: number): STM.STM<TQueue.TQueue<A>> => |
| 267 | makeQueue<A>(requestedCapacity, Dropping) |
| 268 | |
| 269 | /** @internal */ |
| 270 | export const isEmpty = <A>(self: TQueue.TDequeue<A> | TQueue.TEnqueue<A>): STM.STM<boolean> => self.isEmpty |
nothing calls this directly
no test coverage detected