/** * The same as `intersect` but ignores the left output. * * @tsplus pipeable-operator effect/core/io/Schedule > * @tsplus static effect/core/io/Schedule.Aspects zipRight * @tsplus pipeable effect/core/io/Schedule zipRight */ export function zipRight( that: Schedule ) { return ( self: Schedule ): Schedule => self.intersect(that).map((out) => out[1] as Out2) }