I have a question: How can I override the show method for String or Char ? Thanks.
|
If you're wanting to do this, then you're doing it wrong. For a more technical reason why, see my answer to a previous question. You really should be using either your own |
|||
|
|
|
Since people seem to like my comment, here it is as an answer: If you want to reimplement type classes on existing types, you can wrap them in a This might look something like this:
You can use this by wrapping
This will print out
|
|||
|
Char -> StringorString -> String? Why do you want to overrideshow? – hammar Nov 19 '11 at 5:27