CurryInfo: cpm-3.3.0 / CPM.FileUtil.writeFileIfNotExists

definition:
writeFileIfNotExists :: FilePath -> String -> IO ()
writeFileIfNotExists fname cnt =
  ifFileExists fname (return ()) (writeFile fname cnt)
demand:
no demanded arguments
deterministic:
deterministic operation
documentation:
--- Writes a file with a given contents if it does not exist.
failfree:
(_, _)
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_,_) |-> _}
name:
writeFileIfNotExists
precedence:
no precedence defined
result-values:
_
signature:
String -> String -> Prelude.IO ()
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
reducible on all ground data terms