/** * Creates a stream from an effect producing a value of type `Collection` * * @tsplus static effect/core/stream/Stream.Ops fromCollectionEffect */ export function fromCollectionEffect( collection: Effect> ): Stream { return Stream.fromEffect(collection).mapConcat(identity) }