(stream: LazyArg<Stream<A, E, R>>)
| 788 | * @since 2.0.0 |
| 789 | */ |
| 790 | export const suspend = <A, E, R>(stream: LazyArg<Stream<A, E, R>>): Stream<A, E, R> => |
| 791 | fromChannel(Channel.suspend(() => stream().channel)) |
| 792 | |
| 793 | /** |
| 794 | * Terminates with the specified error. |
no test coverage detected