(evaluate: LazyArg<E>)
| 985 | * @since 2.0.0 |
| 986 | */ |
| 987 | export const failSync = <E>(evaluate: LazyArg<E>): Channel<never, E, never> => fromPull(Effect.failSync(evaluate)) |
| 988 | |
| 989 | /** |
| 990 | * Constructs a channel that fails immediately with the specified `Cause`. |
nothing calls this directly
no test coverage detected