Lets say I have the following:
data Greek = Alpha | Beta | Gamma | Phi deriving Show
I want to use the default showing of all items except Beta, which I want to say "two".
Can I do this?
|
|
||||
|
|
|
Not that this is entirely satisfactory, but you could do:
And use showGreek instead of show. If you needed a real show instance (in my code I find that I need this less than beginners tend to think), you could do the rather cumbersome:
If it were my code, I'd just stick with A nice rule of thumb I use is that the Show and Read instances are Haskell-generated only. If show doesn't produce valid Haskell code, it shouldn't be in a Show instance. |
|||||||||
|
|
Some of the other suggestions work great in your particular example, and I would suggest to use those. But in a more general case you might want to use datatype-generic programming. Using generic programming, you can write functions that work on multiple data types, i.e. functions that do the same for every data type. Examples of such functions are This is an example using the regular library:
To be honest, I don't really like the output from Regulars |
|||
|
|
|
As far as I know, you can't. The deriving mechanism doesn't support anyway to alter or extend the derived instances. |
|||
|
|
myShow Beta="Two";myShow z=show z– KennyTM Mar 27 '10 at 15:18