New to Haskell and have a stumbling block. I'm trying to filter a list of tuples based on the first item.
filter (==(x,_)) lis
I get an illegal '_' error, but I'm not sure how I can get around it?
|
|
|
|
|
|
|
In Haskell, you cannot iterate over a tuple like you can a list. If the tuple only has two items, you can use One way to do what I think you want to do is this approach:
Which only returns the items in the list where the first element is equal to 1; of course, you can substitute To be a little more specific, |
||||
|
|
|
You can't give an argument with a wildcard If you want to use pattern matching you could use a lambda function as you
Also, there is the predefined function
|
|||
|
|