I have a type
class IntegerAsType a where
value :: a -> Integer
data T5
instance IntegerAsType T5 where value _ = 5
newtype (Num a, IntegerAsType n) => PolyRing a n = PolyRing [a]
I've looked around for a way to specify the constructor for the newtype. I realize there can only be one, but I don't see why I can specify what it is.
For example, I might want to only take the first 3 elements of the argument to the PolyRing value constructor.
I tried adding using a where clause at the end of the newtype declaration, but that didn't compile.
I also tried: (PolyRing xs) = PolyRing [2, 3, 5, 7]
as a toy example. What I think this should do is ignore the argument to the value constructor and always have the value [2,3,5,7]. The code compiles, but my "custom" constructor has no effect.
Is it possible to specify the constructor for a newtype?
Thanks
newtype PolyRing a n = PolyRing [a]. If you want to call the constructor something else donewtype PolyRing a n = SomethingElse [a]. – sepp2k Sep 2 '11 at 22:07