In GHCi:
Prelude> error (error "")
*** Exception:
Prelude> (error . error) ""
*** Exception: *** Exception:
Why isn't the first one a nested exception?
|
The answer is that this is the (somewhat surprising) semantics of imprecise exceptions When pure code can be shown to evaluate to a set of exceptional values (i.e. the value of An occasional gotcha for even advanced Haskellers is a case such as:
Since the code evaluates to a set of exceptions, GHC is free to pick one. With optimizations on, you may well find this always evaluates to "Not one". Why do we do this? Because otherwise we'd overly constrain the evaluation order of the language, e.g. we would have to fix a deterministic result for:
by for example, requiring that it be evaluated left-to-right if error values are present. Very un-Haskelly! Since we don't want to cripple the optimizations that can be done on our code just to support Normally, you don't care - an exception is an exception - unless you care about the string inside the exception, in which case using References: A semantics for imprecise exceptions, Simon Peyton Jones, Alastair Reid, Tony Hoare, Simon Marlow, Fergus Henderson. Proc Programming Languages Design and Implementation (PLDI'99), Atlanta. (PDF) |
|||||||||||||||||||
|
erroris special and not really an exception mechanism. For real, catchable exceptions seeErrormonad. – Cat Plus Plus Jun 17 '12 at 10:52(\f g x -> f (g x)) error error ""behaves differently from(.) error error "", even though that function is equivalent to(.). Maybe it has to do with the optimization flags that Prelude was compiled with. – shachaf Jun 17 '12 at 10:56iterate error "" !! nand the awesomefix error. – Vitus Jun 17 '12 at 12:14error = errorand program accordingly. – Gabriel Gonzalez Jun 17 '12 at 15:23