In most OO languages that I'm familiar with, the toString method of a String is actually just the identity function. But in Haskell show adds double quotes.
So if I write a function something like this
f :: Show a => [a] -> String
f = concat . map show
it works as expected for numbers
f [0,1,2,3] -- "0123"
but Strings end up with extra quotes
f ["one", "two", "three"] -- "\"one\"\"two\"\"three\""
when I really want "onetwothree".
If I wanted to write f polymorphically, is there a way to do it with only a Show constraint, and without overriding the Show instance for String (if that's even possible).
The best I can come up with is to create my own type class:
class (Show a) => ToString a where
toString = show
and add an instance for everything?
instance ToString String where toString = id
instance ToString Char where toString = pure
instance ToString Int
instance ToString Maybe
...etc
newtypeconstruct to create aLiteralStringtype with customShowandReadinstances: github.com/corsis/PortFusion/blob/… – Cetin Sert Aug 28 '12 at 0:22Shownot only adds double quotes. It also escapes characters such as line breaks. For example, the one-character string"\n"is shown as a four-character string, with characters ", \, n, ". – sdcvvc Aug 28 '12 at 0:46putStr,putStrLn,hPutStr,hPutStrLn- these would not change your strings in any way (no double quotes, newline escapes, etc.) – Cetin Sert Aug 28 '12 at 0:56putStr- but to be polymorphic you have to useprint- akaputStr . show. – Peter Hall Aug 28 '12 at 1:00