CurryInfo: base-3.4.0 / Prelude.showParen

definition: Info
 
showParen :: Bool -> ShowS -> ShowS
showParen b s = if b then showChar '(' . s . showChar ')' else s
demand: Info
 argument 1
deterministic: Info
 deterministic operation
documentation: Info
 
If the first argument is `True`, Converts a show function to a
show function adding enclosing brackets, otherwise the show function
is returned unchanged.
failfree: Info
 (_, _)
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {({True},_) |-> {.._#lambda508} || ({False},_) |-> _}
name: Info
 showParen
precedence: Info
 no precedence defined
result-values: Info
 _
signature: Info
 Bool -> ([Char] -> [Char]) -> [Char] -> [Char]
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 yes
totally-defined: Info
 reducible on all ground data terms