Haskell: looking up the second value of a tuple in a list based on the first value - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T19:58:20Zhttp://stackoverflow.com/feeds/question/815086http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/815086/haskell-looking-up-the-second-value-of-a-tuple-in-a-list-based-on-the-first-valu0Haskell: looking up the second value of a tuple in a list based on the first valuebenwad2009-05-02T16:00:56Z2009-05-02T17:07:03Z
<p>I've got a function here that is meant to look through a list of tuples and find the second value in the tuple by taking in the first value. Here's the function so far:</p>
<pre><code>lookup :: String -> [(String,String)] -> String
lookup _ _ [] = "Not found"
lookup x y zs = if (notFound x zs)
then "Not found"
else (head [b | (a,b) <- zs, (a==x)])
</code></pre>
<p>The notFound function just returns a Bool as true if there is no tuple containing the given first string. Problem is, I get this type error in Hugs:</p>
<pre><code>ERROR "find.hs" (line 22): Type error in explicitly typed binding
*** Term : lookup
*** Type : String -> [(String,String)] -> [a] -> String
*** Does not match : String -> [(String,String)] -> String
</code></pre>
<p>I'm thinking it's something to do with the dummy "Not found" value having a different type to the string from the generated list, but I'm not sure.</p>
http://stackoverflow.com/questions/815086/haskell-looking-up-the-second-value-of-a-tuple-in-a-list-based-on-the-first-valu/815094#8150944Answer by Jonathan Tran for Haskell: looking up the second value of a tuple in a list based on the first valueJonathan Tran2009-05-02T16:06:29Z2009-05-02T16:06:29Z<p>I think your explicit type-declaration is wrong. You have:</p>
<pre><code>lookup :: String -> [(String,String)] -> String
</code></pre>
<p>but I think it should be</p>
<pre><code>lookup :: String -> String -> [(String,String)] -> String
</code></pre>
<p>Actually, after taking another look at it, it looks like you're not using the 2nd parameter "y". So you could remove it and the underscore like so</p>
<pre><code>lookup :: String -> [(String,String)] -> String
lookup _ [] = "Not found"
lookup x zs = if (notFound x zs)
then "Not found"
else (head [b | (a,b) <- zs, (a==x)])
</code></pre>
<p>This will allow you to keep the type declaration you have.</p>
http://stackoverflow.com/questions/815086/haskell-looking-up-the-second-value-of-a-tuple-in-a-list-based-on-the-first-valu/815095#8150951Answer by Brian for Haskell: looking up the second value of a tuple in a list based on the first valueBrian2009-05-02T16:06:34Z2009-05-02T16:06:34Z<p>At a glance, it looks like maybe the second parameter should be removed (the 'y' and the second underscore)? lookup is declared to take two parameters, not three.</p>
http://stackoverflow.com/questions/815086/haskell-looking-up-the-second-value-of-a-tuple-in-a-list-based-on-the-first-valu/815208#8152084Answer by newacct for Haskell: looking up the second value of a tuple in a list based on the first valuenewacct2009-05-02T17:07:03Z2009-05-02T17:07:03Z<p>by the way, did you know that Haskell Prelude already has a "lookup" function to look up entries in an association list? here is the type signature (it is more general, accepting any key type which instances Eq):</p>
<pre><code>lookup :: (Eq a) => a -> [(a,b)] -> Maybe b
</code></pre>
<p>so your function would accomplish something like the below</p>
<pre><code>myLookup x zs = Maybe.fromMaybe "Not found" $ lookup x zs
</code></pre>