/** * Emits elements of this stream with a fixed delay in between, regardless of * how long it takes to produce a value. * * @tsplus static effect/core/stream/Stream.Aspects fixed * @tsplus pipeable effect/core/stream/Stream fixed */ export function fixed(duration: Duration) { return (self: Stream): Stream => self.schedule(Schedule.fixed(duration)) }