/** * The same as `andThenEither`, but merges the output. * * @tsplus pipeable-operator effect/core/io/Schedule / * @tsplus static effect/core/io/Schedule.Aspects andThen * @tsplus pipeable effect/core/io/Schedule andThen */ export function andThen( that: Schedule ) { return (self: Schedule): Schedule< readonly [State, State1, boolean], Env | Env1, In & In1, Out | Out2 > => self.andThenEither(that).map((either) => either.merge) }