/** * Repeats the value using the provided schedule. * * @tsplus static effect/core/stream/Stream.Ops repeatWithSchedule */ export function repeatWithSchedule( a: A, schedule: Schedule ): Stream { return Stream.repeatEffectWithSchedule(Effect.succeed(a), schedule) }