/** * Repeats this channel forever. * * @tsplus getter effect/core/stream/Channel repeated */ export function repeated( self: Channel ): Channel { return self.flatMap(() => repeated(self)) }