(value: A)
| 825 | export const failSync = <E>(evaluate: LazyArg<E>): Stream<never, E> => fromChannel(Channel.failSync(evaluate)) |
| 826 | |
| 827 | /** |
| 828 | * Creates a stream that fails with the specified `Cause`. |
| 829 | * |
| 830 | * **Example** (Failing with a cause) |
no test coverage detected
searching dependent graphs…