( evaluate: LazyArg<Cause.Cause<E>> )
| 1035 | * @since 2.0.0 |
| 1036 | */ |
| 1037 | export const failCauseSync = <E>( |
| 1038 | evaluate: LazyArg<Cause.Cause<E>> |
| 1039 | ): Channel<never, E, never> => fromPull(Effect.failCauseSync(evaluate)) |
| 1040 | |
| 1041 | /** |
| 1042 | * Constructs a channel that fails immediately with the specified defect. |
nothing calls this directly
no test coverage detected