definition:
|
parensIf :: Bool -> Doc -> Doc
parensIf b s = if b then parens s else s
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Document `(parensIf x)` encloses document `x` in parenthesis,`"("` and `")"`,
--- iff the condition is true.
--- @param x - a document
--- @return document x enclosed in parenthesis iff the condition is true
|
failfree:
|
(_, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({True},_) |-> _ || ({False},_) |-> _}
|
name:
|
parensIf
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Prelude.Bool -> Text.PrettyImpl.Doc -> Text.PrettyImpl.Doc
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
yes
|
totally-defined:
|
possibly non-reducible on same data term
|