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