I've read about some of the issues with Haskell records, in particular, the fact that two elements in the same module can not have the same name.
I understand you can work around this by having separate modules, but I didn't want to do that and instead tried this approach:
class HasX a where
x :: a -> X
data D1 = D1 { d1_x :: X, ... }
instance HasX D1 where
x = d1_x
data D2 = D2 { d2_x :: X, ... }
instance HasX D2 where
x = d2_x
(This only does gets, not sets, I'd of course need to write more code to do sets).
However, it seems the class and instance declarations for all this seem like a like of boilerplate which should be able to be eliminated, using template haskell or something else.
Is there a library or extension to GHC that makes such an approach less messy to write?
class HasX a where x :: a -> X? – Chris Taylor May 3 '12 at 8:55