up vote 3 down vote favorite
1
share [g+] share [fb]

Basically what I need to do is write a function that takes in a list of type [(String,String)] and print out the contents so that, line-by-line, the output looks like this:

FirstString : SecondString

FirstString : SecondString

..etc, for every item in the list. I've got the following code and it prints it out, but for some reason it prints out a line containing [(),()] at the end.

display :: Table -> IO()
display zs = do {xs <- sequence [putStrLn (a++" = "++b) | (a,b) <- zs]; print xs }

Is there anything I'm doing wrong?

link|improve this question

feedback

4 Answers

up vote 9 down vote accepted

The final print xs is unnecessary. sequence here is returning a bunch of ()s (the return value of putStrLn), and print is printing that out as well.

While you're at it, now that print xs is gone, you can get rid of the xs variable binding, and make sequence into sequence_ to throw away the return value, giving:

display :: Table -> IO()
display zs = sequence_ [putStrLn (a++" = "++b) | (a,b) <- zs]
link|improve this answer
If memory is a concern, you may want to check out newacct's method (below). – Tim Stewart Jun 2 '09 at 4:47
feedback

I would agree with ja that you should split up your code in to two functions:

  • A pure part: a function that takes your data structure and turns it into a string
  • An impure part, that renders that string to the console

Here's a simple implementation:

showTable :: Table -> String
showTable xs = concatMap format xs
  where
    format (a, b) = a ++ " : " ++ b ++ "\n"

display :: Table -> IO ()
display table = putStr (showTable table)

This design has two advantages:

For one, most of your `logic' is in the pure part of the code, which is nice, in a functional programming kind of way.

Secondly, and this is just simple software engineering principle; you now have a reusable function that you can use, should you ever want to format your data structure in another part of your code (seems likely).

link|improve this answer
or make Table part of Show typeclass, for which then you can do: show myTable – fengshaun Nov 13 '10 at 8:16
feedback

You could even use mapM:

display :: Table -> IO ()
display = mapM_ (\(a,b) -> putStrLn (a++" = "++b))
link|improve this answer
This method uses less memory than bdonlan's method. On my sample data, this method used about 70k less. I wonder if bdonlan's method used more memory because it had to create a list of IO actions. – Tim Stewart Jun 2 '09 at 4:40
How are you measuring memory use? Haskell creates a /lot/ of ephemeral allocations, so what it probably means is that this is just plain faster :) – bdonlan Jun 2 '09 at 17:17
feedback

Write a function that takes a tuple to a string, formatted as you wish.
Then concatMap that function over your list; print the result.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.