Std.Show
12 public declarations
- array
&Array[T] -> StrEvery element rendered and joined, wrapped in brackets.
- bool
Bool -> StrA truth value as `true` or `false`.
- char
Char -> StrA character as itself, without the quotes rendering would add.
- int
Int -> StrA whole number as text, with a leading minus when it is negative.
- joined
&Array[T] -> Str -> StrEvery element rendered and joined with a separator, with no brackets.
- mapLines
&Map[K, V] -> StrEvery entry of a map rendered on its own line as `key: value`.
- option
&Option[T] -> Str -> StrA value that may be absent, rendered as its content or as a placeholder.
- pair
(A, B) -> Str -> StrA pair rendered as its two sides, separated.
- render
T -> StrAny value rendered the way the prompt renders it.
- result
&Result[T, E] -> StrA result rendered as its success or its failure, with a marker for which.
- table
&Array[Array[Str]] -> StrA table of rows rendered with each column padded to its widest cell.
- text
Str -> StrText as itself, and anything else rendered.
