definition:
|
showILit :: ILiteral -> String
showILit (IInt n) = show n
showILit (IChar c) = show c
showILit (IFloat f) = show f
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
-- Shows a literal as a string. Used in the interpreter to avoid
-- specific graph nodes for literal values.
|
failfree:
|
_
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({IInt}) |-> _ || ({IChar}) |-> _ || ({IFloat}) |-> _}
|
name:
|
showILit
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
ICurry.Types.ILiteral -> String
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|