/** * Creates a stream from an effect producing chunks of `A` values which * repeats forever. * * @tsplus static effect/core/stream/Stream.Ops repeatEffectChunk */ export function repeatEffectChunk(effect: Effect>): Stream { return Stream.repeatEffectChunkMaybe(effect.mapError(Maybe.some)) }