definition:
|
ppLit :: Literal -> String
ppLit (Char c) = ['\'', c, '\'']
ppLit (Int i) = show i
ppLit (Float f) = show f
ppLit (String s) = "\"" ++ s ++ "\""
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
failfree:
|
_
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({Char}) |-> {:} || ({Int}) |-> _ || ({Float}) |-> _ || ({String}) |-> _}
|
name:
|
ppLit
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
Curry.Types.Literal -> String
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|