// ets_tracing: off import * as O from "@effect-ts/system/Option" import type { Show } from "../../Show/index.js" export function getShow(S: Show): Show> { return { show: (ma) => (O.isNone(ma) ? "none" : `some(${S.show(ma.value)})`) } }