Show and Read instance
From HaskellWiki
(Difference between revisions)
(itemized) |
m |
||
| Line 4: | Line 4: | ||
The next question is: | The next question is: | ||
| - | Shall <hask>show</hask> emit valid Haskell code, | + | Shall <hask>show</hask> emit valid Haskell code, that represents the shown data, |
| - | that represents the shown data, | + | or shall it show eye-candy, maybe even formatted in a line-oriented way. |
| - | or shall it show | + | |
* [http://www.haskell.org/pipermail/libraries/2005-March/003496.html Meaning of Show and Read I] | * [http://www.haskell.org/pipermail/libraries/2005-March/003496.html Meaning of Show and Read I] | ||
* [http://www.haskell.org/pipermail/libraries/2005-March/003497.html Meaning of Show and Read II] | * [http://www.haskell.org/pipermail/libraries/2005-March/003497.html Meaning of Show and Read II] | ||
| - | |||
* [http://www.haskell.org/pipermail/glasgow-haskell-users/2003-August/005586.html Show instance for Tree] | * [http://www.haskell.org/pipermail/glasgow-haskell-users/2003-August/005586.html Show instance for Tree] | ||
| + | * [http://www.haskell.org/pipermail/libraries/2006-November/006257.html Raw vs. Show] | ||
[[Category:Style]] | [[Category:Style]] | ||
Current revision
What shall the Show and Read instances show and parse, respectively? It is certainly a good thing, if
- parses, whatreadshows.show
The next question is:
Shallshow
or shall it show eye-candy, maybe even formatted in a line-oriented way.
