/** * @tsplus static Maybe.Ops getShow */ export function getShow(S: Show): Show> { return Show((maybe) => maybe.isNone() ? "None" : `Some(${S.show(maybe.value)})`) }