0.2.2 #31

Merged
Thilawyn merged 184 commits from next into master 2026-01-16 17:05:31 +01:00
Showing only changes of commit 0b7d9383ec - Show all commits

View File

@@ -182,7 +182,7 @@ export const forkEffectScoped = <A, E, R, P = never>(
): Effect.Effect<
Queue.Dequeue<Result<A, E, P>>,
never,
Scope.Scope | R
Scope.Scope | Exclude<R, Progress<P>>
> => Effect.Do.pipe(
Effect.bind("queue", () => Queue.unbounded<Result<A, E, P>>()),
Effect.bind("ref", () => Ref.make<Result<A, E, P>>(initial())),