( ...chunks: Array<Chunk.Chunk<A>> )
| 3056 | |
| 3057 | /** @internal */ |
| 3058 | export const fromChunks = <A>( |
| 3059 | ...chunks: Array<Chunk.Chunk<A>> |
| 3060 | ): Stream.Stream<A> => pipe(fromIterable(chunks), flatMap(fromChunk)) |
| 3061 | |
| 3062 | /** @internal */ |
| 3063 | export const fromEffect = <A, E, R>(effect: Effect.Effect<A, E, R>): Stream.Stream<A, E, R> => |
nothing calls this directly
no test coverage detected