(subscription: Subscription<A>)
| 1308 | |
| 1309 | /** @internal */ |
| 1310 | const unsafePollAllSubscription = <A>(subscription: Subscription<A>): Chunk.Chunk<A> => { |
| 1311 | return subscription.pollUpTo(Number.POSITIVE_INFINITY) |
| 1312 | } |
| 1313 | |
| 1314 | /** @internal */ |
| 1315 | const unsafePollN = <A>(subscription: Subscription<A>, max: number): Chunk.Chunk<A> => { |