import * as mod from "https://github.gh-proxy.cn/raw.githubusercontent.com/baetheus/fun/main/showable.ts";The Showable module contains utilities for working with the Showable algebraic data type. Showable is a structure that indicates that an instance can be converted to a string representation.
Showable provides a standardized way to convert any value to a human-readable string format. This is particularly useful for debugging, logging, and displaying values in user interfaces. The module includes utilities for creating Showable instances for complex data structures like objects and tuples.
| tuple | Create a Showable instance for a tuple type by providing Showable instances for each element in the tuple. The resulting show function will format the tuple as a string with square brackets and comma-separated values. |