CurryInfo: base-3.4.0 / Prelude.catch

definition: Info
 
catch :: IO a -> (IOError -> IO a) -> IO a
demand: Info
 no demanded arguments
deterministic: Info
 deterministic operation
documentation: Info
 
Catches a possible error or failure during the execution of an
I/O action. `catch act errfun` executes the I/O action `act`.
If an exception or failure occurs during this I/O action, the
function `errfun` is applied to the error value.
failfree: Info
 (_, _)
indeterministic: Info
 referentially transparent operation
infix: Info
 no fixity defined
iotype: Info
 {(_,_) |-> _}
name: Info
 catch
precedence: Info
 no precedence defined
result-values: Info
 _
signature: Info
 IO a -> (IOError -> IO a) -> IO a
solution-complete: Info
 operation might suspend on free variables
terminating: Info
 yes
totally-defined: Info
 reducible on all ground data terms