definition: |
whenFileExists :: FilePath -> IO () -> IO () whenFileExists fname act = ifFileExists fname act (return ()) |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
documentation: |
--- Performs an action when a file exists. |
failfree: |
(_, _) |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{(_,_) |-> _} |
name: |
whenFileExists |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
String -> Prelude.IO () -> Prelude.IO () |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
reducible on all ground data terms |