Haskell: looking up the second value of a tuple in a list based on the first value - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T19:58:20Z http://stackoverflow.com/feeds/question/815086 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/815086/haskell-looking-up-the-second-value-of-a-tuple-in-a-list-based-on-the-first-valu 0 Haskell: looking up the second value of a tuple in a list based on the first value benwad 2009-05-02T16:00:56Z 2009-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 -&gt; [(String,String)] -&gt; String lookup _ _ [] = "Not found" lookup x y zs = if (notFound x zs) then "Not found" else (head [b | (a,b) &lt;- 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 -&gt; [(String,String)] -&gt; [a] -&gt; String *** Does not match : String -&gt; [(String,String)] -&gt; 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#815094 4 Answer by Jonathan Tran for Haskell: looking up the second value of a tuple in a list based on the first value Jonathan Tran 2009-05-02T16:06:29Z 2009-05-02T16:06:29Z <p>I think your explicit type-declaration is wrong. You have:</p> <pre><code>lookup :: String -&gt; [(String,String)] -&gt; String </code></pre> <p>but I think it should be</p> <pre><code>lookup :: String -&gt; String -&gt; [(String,String)] -&gt; 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 -&gt; [(String,String)] -&gt; String lookup _ [] = "Not found" lookup x zs = if (notFound x zs) then "Not found" else (head [b | (a,b) &lt;- 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#815095 1 Answer by Brian for Haskell: looking up the second value of a tuple in a list based on the first value Brian 2009-05-02T16:06:34Z 2009-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#815208 4 Answer by newacct for Haskell: looking up the second value of a tuple in a list based on the first value newacct 2009-05-02T17:07:03Z 2009-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) =&gt; a -&gt; [(a,b)] -&gt; 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>