definition:
|
readDataFile :: ReadWrite a => FilePath -> IO (Maybe a)
readDataFile file = do
dt <- readFile file
catch (return $ readData dt) (\_ -> return Nothing)
|
demand:
|
no demanded arguments
|
deterministic:
|
deterministic operation
|
documentation:
|
--- Reads a file containing a compact data representation,
--- parses the contents and returns the value.
---
--- If the parse failes (e.g. due to a type mismatch or a bad input format),
--- `Nothing` is returned.
|
failfree:
|
<FAILING>
|
indeterministic:
|
referentially transparent operation
|
infix:
|
no fixity defined
|
iotype:
|
{(_,_) |-> _}
|
name:
|
readDataFile
|
precedence:
|
no precedence defined
|
result-values:
|
_
|
signature:
|
ReadWrite a => String -> Prelude.IO (Prelude.Maybe a)
|
solution-complete:
|
operation might suspend on free variables
|
terminating:
|
possibly non-terminating
|
totally-defined:
|
possibly non-reducible on same data term
|