definition:
|
showDataP :: ReadWrite a => RWParameters -> a -> String
showDataP params x =
(show (alphabetLen params) ++ "\n") ++
(ppType (typeOf x) ++ "\n") ++ (l "" ++ "\n") ++
concatMap outputStr (keysOrdByVal ls)
where
(ls,l) = showRW params T.empty x
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Converts data to a compact string representation using specific RWParameters .
---
--- This is rarely what you want. Use writeDataFileP if you want to write
--- the data into a file.
|
failfree:
|
(_, _, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_) |-> _}
|
name:
|
showDataP
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
ReadWrite a => RWParameters -> a -> String
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|