/** * Returns a new schedule that packs the input and output of this schedule * into the second element of a tuple. This allows carrying information * through this schedule. * * @tsplus getter effect/core/io/Schedule second */ export function second( self: Schedule ): Schedule { return Schedule.identity() ** self }