(error: E)
| 955 | * @since 2.0.0 |
| 956 | */ |
| 957 | export const fail = <E>(error: E): Channel<never, E, never> => fromPull(Effect.succeed(Effect.fail(error))) |
| 958 | |
| 959 | /** |
| 960 | * Constructs a channel that fails immediately with the specified lazily |
no test coverage detected