(evaluate: LazyArg<A>)
| 882 | * @since 2.0.0 |
| 883 | */ |
| 884 | export const sync = <A>(evaluate: LazyArg<A>): Channel<A> => fromEffect(Effect.sync(evaluate)) |
| 885 | |
| 886 | /** |
| 887 | * Represents a `Channel` that emits no elements. |
nothing calls this directly
no test coverage detected