definition:
|
showTuple :: [ShowS] -> ShowS
showTuple ss = showChar '('
. foldr1 (\s r -> s . showChar ',' . r) ss
. showChar ')'
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Converts a list of show functions to a show function combining
--- the given show functions to a tuple representation.
|
failfree:
|
{:}
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_) |-> {.._#lambda508}}
|
name:
|
showTuple
|
precedence:
|
no precedence defined
|
result-values:
|
{.._#lambda508}
|
signature:
|
[[Char] -> [Char]] -> [Char] -> [Char]
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
possibly non-reducible on same data term
|