CurryInfo: abstract-curry-4.0.0 / AbstractCurry.Pretty.ppCLiteral

definition:
ppCLiteral :: Options -> CLiteral -> Doc
ppCLiteral _ (CIntc i)    = int i
ppCLiteral _ (CFloatc f)  = float f
ppCLiteral _ (CCharc c)   = text $ show c
ppCLiteral _ (CStringc s)
    | null s    = text "\"\"" -- necessary for pakcs
    | otherwise = text $ show s
demand:
argument 2
deterministic:
deterministic operation
documentation:
--- Pretty-print given literal (Int, Float, ...).
failfree:
(_, _)
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_,{CIntc}) |-> {Doc} || (_,{CFloatc}) |-> {Doc} || (_,{CCharc}) |-> _ || (_,{CStringc}) |-> _}
name:
ppCLiteral
precedence:
no precedence defined
result-values:
_
signature:
Options -> AbstractCurry.Types.CLiteral -> Text.PrettyImpl.Doc
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
possibly non-reducible on same data term