* Runs an effect with the given number of permits and releases the permits * when the effect completes. * * **Details** * * This function acquires the specified number of permits before executing * the provided effect. Once the effect finishes, the permits are released. * If ins
(permits: number)
| 11787 | * are released by other tasks. |
| 11788 | */ |
| 11789 | withPermits(permits: number): <A, E, R>(self: Effect<A, E, R>) => Effect<A, E, R> |
| 11790 | |
| 11791 | /** |
| 11792 | * Runs an effect only if the specified number of permits are immediately |
no outgoing calls
no test coverage detected