definition:
|
litAsCons :: Literal -> QName
litAsCons l = ("", showLit l)
where
showLit (Intc i) = show i
showLit (Floatc x) = show x
showLit (Charc c) = show c
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- A literal `l` is represented as a constructor `("",l)`.
|
failfree:
|
_
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_) |-> {(,)}}
|
name:
|
litAsCons
|
precedence:
|
no precedence defined
|
result-values:
|
{(,)}
|
signature:
|
FlatCurry.Types.Literal -> (String, String)
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|