( channel: Channel<OutElem, OutErr, OutDone, InElem, InErr, InDone, Env> )
| 422 | * **Example** (Extracting channel transforms) |
| 423 | * |
| 424 | * ```ts import.meta.vitest |
| 425 | * import { Channel, Effect } from "effect" |
| 426 | * |
| 427 | * const channel = Channel.succeed(42) |
| 428 | * const transform = Channel.toTransform(channel) |
| 429 | * typeof transform // => "function" |
| 430 | * Effect.runSync(Channel.runCollect(channel)) // => [42] |
| 431 | * ``` |
| 432 | * |
no outgoing calls
no test coverage detected
searching dependent graphs…