(evaluate: LazyArg<MicroCause<E>>)
| 955 | * @category constructors |
| 956 | */ |
| 957 | export const failCauseSync = <E>(evaluate: LazyArg<MicroCause<E>>): Micro<never, E> => |
| 958 | suspend(() => failCause(evaluate())) |
| 959 | |
| 960 | /** |
| 961 | * Creates a `Micro` effect that will die with the specified error. |