If I have a data type say:
data Color = Red | Yellow | Green
Is there a way I can turn this into a list of type [Color] getting all possible values? [Red, Yellow, Green]
Perhaps this is a complete anti pattern?
|
|
|
|||
|
Not sure if it is an anti-pattern (nor can I think of a good use right now), but it's possible. Use the
If you ever add another color, allColors get updated automatically. One restriction though: Edit: The other answer works as well, maybe better since it doesn't require deriving |
|||
|
|
|
Surely delnan's answer is better. Since I do not know how to include a piece of code in a comment, I'll give a generalisation as a separate answer here.
Now, this works for any type with a
In many cases, you won't even need to define |
|||||
|
|
Here is an example of using this technique to parse enums with Parsec
And the parsec parser
of course the try could could be applied by better by pattern matching and a few other things could make it nicer but this is just an example of some usage of the technique. |
|||
|
|