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