This is a follow-up of Why am I getting "Non-exhaustive patterns in function..." when I invoke my Haskell substring function?
I understand that using -Wall
, GHC can warn against non-exhaustive patterns. I'm wondering what's the reason behind not making it a compile-time error by default given that it's always possible to explicitly define a partial function:
f :: [a] -> [b] -> Int
f [] _ = error "undefined for empty array"
f _ [] = error "undefined for empty array"
f (_:xs) (_:ys) = length xs + length ys
The question is not GHC-specific.
Is it because...
- nobody wanted to enforce a Haskell compiler to perform this kind of analysis?
- a non-exhaustive pattern search can find some but not all cases?
- partially defined functions are considered legitimate and used often enough not to impose the kind of construct shown above? If this is the case, can you explain to me why non-exhaustive patterns are helpful/legitimate?
You can use
-Werror
to turn warnings into errors. I don't know if you can turn just the non-exhaustive patterns warnings into errors, sorry!As for the third part of your question:
I sometimes write a number of functions which tend to work closely together and have properties which you can't easily express in Haskell. At least some of these functions tend to have non-exhaustive patterns, usually the 'consumers'. This comes up, for example in functions which are 'sort-of' inverses of each other.
A toy example:
Now it's pretty easy to see that
removeDuplicates (duplicate as)
is equal toas
(whenever the element type is inEq
), but in generalduplicate (removeDuplicates bs)
will crash, because there are an odd number of elements or 2 consecutive elements differ. If it doesn't crash, it's becausebs
was produced by (or could have been produced by)duplicate
in the first place!.So we have the following laws (not valid Haskell):
Now, if you want to prevent non-exhaustive patterns here, you could make
removeDuplicates
returnMaybe [a]
, or add error messages for the missing cases. You could even do something along the lines ofAll this is necessary, because you can't easily express 'being a list of even length, with consecutive pairs of elements being equal' in the Haskell type system (unless you're Oleg :)
But if you don't export
removeDuplicates
I think it's perfectly okay to use non-exhaustive patterns here. As soon as you do export it, you'll lose control over the inputs and will have to deal with the missing cases!There are cases where you don't mind that a pattern match is non-exhaustive. For example, while this might not be the optimal implementation, I don't think it would help if it didn't compile:
That this is non-exhaustive (negative numbers don't match any case) doesn't really matter for the typical usage of the factorial function.
Also it might not generally be possible to decide for the compiler if a pattern match is exhaustive:
Here all cases should be covered, but the compiler probably can't detect it. Since the guards could be arbitrarily complex, the compiler cannot always decide if the patterns are exhaustive. Of course this example would better be written with
otherwise
, but I think it should also compile in its current form.