/** * @tsplus static Either.Ops getShow */ export function getShow(SE: Show, SA: Show): Show> { return Show((either) => either.isLeft() ? `Left(${SE.show(either.left)})` : `Right(${SA.show(either.right)})` ) }