definition:
|
ppJValue :: JValue -> Doc
ppJValue JTrue = text "true"
ppJValue JFalse = text "false"
ppJValue JNull = text "null"
ppJValue (JNumber x) = let i = round x
in if fromInt i == x then int i else float x
ppJValue (JString s) = text $ showJSONString s
ppJValue (JArray vs) = ppJArray vs
ppJValue (JObject ps) = ppJObject ps
|
demand:
|
argument 1
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Turn a JSON value into a Doc from Curry's Pretty module.
--- JSON numbers are printed as integers if appropriate.
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{({JTrue}) |-> {Doc} || ({JFalse}) |-> {Doc} || ({JNull}) |-> {Doc} || ({JNumber}) |-> {Doc} || ({JString}) |-> _ || ({JArray}) |-> _ || ({JObject}) |-> _}
|
name:
|
ppJValue
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
JSON.Data.JValue -> Text.PrettyImpl.Doc
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|