CurryInfo: curry-repl-1.2.0 / REPL.Utils.removeFileIfExists

definition:
removeFileIfExists :: FilePath -> IO ()
removeFileIfExists file = do
  exists <- doesFileExist file
  when exists $ removeFile file
demand:
no demanded arguments
deterministic:
deterministic operation
documentation:
--- Removes the specified file only if it exists.
failfree:
_
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_) |-> _}
name:
removeFileIfExists
precedence:
no precedence defined
result-values:
_
signature:
String -> Prelude.IO ()
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
reducible on all ground data terms