definition:
|
ppLit :: ILiteral -> Doc
ppLit (IInt i) = int i
ppLit (IFloat f) = float f
ppLit (IChar c) = text (show c)
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Pretty print an ICurry literal
--- @param lit the literal
--- @return the pretty printed literal
|
failfree:
|
_
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({IInt}) |-> {Doc} || ({IFloat}) |-> {Doc} || ({IChar}) |-> {Doc}}
|
name:
|
ppLit
|
precedence:
|
no precedence defined
|
result-values:
|
{Doc}
|
signature:
|
ICurry.Types.ILiteral -> Text.PrettyImpl.Doc
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|