(evaluate: LazyArg<A>)
| 768 | * @since 2.0.0 |
| 769 | */ |
| 770 | export const sync = <A>(evaluate: LazyArg<A>): Stream<A> => fromChannel(Channel.sync(() => Arr.of(evaluate()))) |
| 771 | |
| 772 | /** |
| 773 | * Creates a lazily constructed stream. |
nothing calls this directly
no test coverage detected