CurryInfo: io-extra-3.0.0 / System.IOExts.updateFile

definition:
updateFile :: (String -> String) -> String -> IO ()
updateFile f file = do
  s <- readCompleteFile file
  writeFile file (f s)
demand:
no demanded arguments
deterministic:
deterministic operation
documentation:
--- An action that updates the contents of a file.
--- @param f - the function to transform the contents
--- @param file - the name of the file
failfree:
(_, _)
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_,_) |-> _}
name:
updateFile
precedence:
no precedence defined
result-values:
_
signature:
(String -> String) -> String -> Prelude.IO ()
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
reducible on all ground data terms