(label: string)
| 185 | Effect.gen(function*() { |
| 186 | const ref = yield* (Ref.make<ReadonlyArray<string>>([])) |
| 187 | const event = (label: string) => Ref.update(ref, (array) => [...array, label]) |
| 188 | const left = pipe( |
| 189 | Channel.acquireReleaseOut( |
| 190 | event("Acquire outer"), |