definition:
|
ppLiteral :: Literal -> Doc
ppLiteral (Intc i) = int i
ppLiteral (Floatc f) = float f
ppLiteral (Charc c) = text (showEscape c)
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
--- pretty-print a literal
|
failfree:
|
_
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({Intc}) |-> {Doc} || ({Floatc}) |-> {Doc} || ({Charc}) |-> {Doc}}
|
name:
|
ppLiteral
|
precedence:
|
no precedence defined
|
result-values:
|
{Doc}
|
signature:
|
FlatCurry.Types.Literal -> Text.PrettyImpl.Doc
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|