(evaluate: LazyArg<Sink<A, In, L, E, R>>)
| 576 | * @since 2.0.0 |
| 577 | */ |
| 578 | export const suspend = <A, In, L, E, R>(evaluate: LazyArg<Sink<A, In, L, E, R>>): Sink<A, In, L, E, R> => |
| 579 | fromTransform((upstream, scope) => evaluate().transform(upstream, scope)) |
| 580 | |
| 581 | /** |
| 582 | * A sink that always fails with the specified error. |
no test coverage detected