definition:
|
writeDataFileP :: ReadWrite a => RWParameters -> FilePath -> a -> IO ()
writeDataFileP params file x =
do h <- openFile file WriteMode
hPutStr h (show (alphabetLen params) ++ "\n")
hPutStr h (ppType (typeOf x) ++ "\n")
written <- writeRW params h x T.empty
hPutStr h "\n"
let strs = keysOrdByVal written
mapM_ (hPutStr h) (map outputStr strs)
hClose h
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Writes some data to a file containing a compact data representation
--- and use specific RWParameters .
|
failfree:
|
(_, _, _, _)
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_,_,_) |-> _}
|
name:
|
writeDataFileP
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
ReadWrite a => RWParameters -> String -> a -> Prelude.IO ()
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|