// ets_tracing: off import type * as CL from "../../../../Clock/index.js" import * as E from "../../../../Either/index.js" import type * as SC from "../../../../Schedule/index.js" import type * as C from "../core.js" import * as RepeatElementsWith from "./repeatElementsWith.js" /** * Repeats each element of the stream using the provided schedule. When the schedule is finished, * then the output of the schedule will be emitted into the stream. Repetitions are done in * addition to the first execution, which means using `Schedule.recurs(1)` actually results in * the original effect, plus an additional recurrence, for a total of two repetitions of each * value in the stream. */ export function repeatElementsEither_( self: C.Stream, schedule: SC.Schedule ): C.Stream> { return RepeatElementsWith.repeatElementsWith_(self, schedule, E.right, E.left) } /** * Repeats each element of the stream using the provided schedule. When the schedule is finished, * then the output of the schedule will be emitted into the stream. Repetitions are done in * addition to the first execution, which means using `Schedule.recurs(1)` actually results in * the original effect, plus an additional recurrence, for a total of two repetitions of each * value in the stream. * * @ets_data_first repeatElementsEither_ */ export function repeatElementsEither(schedule: SC.Schedule) { return (self: C.Stream) => repeatElementsEither_(self, schedule) }