The non-exhaustive-patterns tag has no wiki summary.
-1
votes
1answer
140 views
Exception : Pattern Matching failure Haskell
I am trying to implement Standard words function of Haskell. I am using State Monad to solve the problem.
My Code is :
type WorS = ([String],String,String)
words' :: State WorS [String]
words' = do
...
2
votes
2answers
100 views
Haskell: Non-exhaustive patterns in function (simple functions)
I am confused as to why the 1st and 3rd versions of this functions give this error whereas the second definition works fine.
-- head and tail
third :: [a] -> a
third [a] = head (tail (tail[a]))
...
2
votes
2answers
373 views
Why does Scala 2.10 give 'match may not be exhaustive' warning when matching on singleton types?
In Scala 2.10.0-M4
object X
def f(e: Either[Int, X.type]) = e match {
case Left(i) => i
case Right(X) => 0
}
gives:
warning: match may not be exhaustive.
It would fail on the following ...
2
votes
1answer
140 views
Disable “Non-exhaustive patterns in case” in GHCI
I am reading the paper "Monad Transformers Step by Step" and making my way through the examples.
In the eval0 example, there is an intentional non-exhaustive pattern in a case expression:
eval0 :: ...
6
votes
2answers
319 views
How to systematically avoid unsafe pattern matching in Scala?
Consider the following broken function:
def sum (list : Seq[Int]) : Int = list match {
case Nil => 0
case head :: tail => head + sum(tail)
}
Here, the function was supposed to work with a ...
0
votes
1answer
912 views
Haskell - Non-exhaustive patterns in case
I have got the following code:
F (S core ps) = FAll core [] ps
where
FAll core acc ((name, (pc : pcs)) : ps)
= case F' (pc : pcs) (readC pc core) core of
Nothing ->
...
3
votes
2answers
2k views
Non-exhaustive patterns in function
I've got a problem with this code, it should count the longest substring of the same letter in a string, but there is an error:
*** Exception: test.hs:(15,0)-(21,17):
Non-exhaustive patterns in ...
1
vote
3answers
171 views
Non-exhaustive Error in Basic Haskell Function
I'm new to Haskell and trying to put together a simple function to check whether or not two numbers are equal. This compiles, but when I try out a test of the program, it says that this is ...
13
votes
2answers
3k views
In Haskell, why non-exhaustive patterns are not compile-time errors?
This is a follow-up of http://stackoverflow.com/questions/3799359/why-am-i-getting-non-exhaustive-patterns-in-function-when-i-invoke-my-haskel
I understand that using -Wall, GHC can warn against ...
9
votes
1answer
4k views
Why am I getting “Non-exhaustive patterns in function…” when I invoke my Haskell substring function?
I'm working my way through the book The Haskell Road to Logic, Maths and Programming. (I'm only mid-way through chapter 1, but I'm enjoying it so far and intend to continue.) I've read through the ...