I'm just curious about the efficiency of pattern matching in Haskell. What is a simple case of where pattern matching would be better than nested if/case statements and then the converse?
Thanks for your help.
|
|
I'm just curious about the efficiency of pattern matching in Haskell. What is a simple case of where pattern matching would be better than nested Thanks for your help.
|
||||||||||||
|
|
|
In Haskell, In languages in the ML family, the optimizer can often do very impressive things with complex pattern matches. This is more difficult for Haskell compilers; because of lazy evaluation, the pattern-match compiler is not allowed to reorder certain tests. In other words, if you nest As far as which way to write your own code, it's safe to assume that the code with the fewest case expressions is the best (keeping in mind that one |
||
|
|
|
|
According to the specification, they are semantically equivalent. This, of course, does not necessarily mean that they are implemented identically, but I would personally be surprised if there was a difference in a decent compiler. |
||
|
|
|
|
I didn't confirm this, but I think both forms will become a nested case-of expression when translated to core Haskell by the compiler. The best way to find out is asking the compiler itself. In GHC you can turn on the dump of the core intermediate program by using the arguments:
|
||
|
|