/** * Returns a new schedule that makes this schedule available on the `Left` * side of an `Either` input, allowing propagating some type `X` through this * channel on demand. * * @tsplus getter effect/core/io/Schedule left */ export function left( self: Schedule ): Schedule, Either> { return self + Schedule.identity() }