I've recently been trying to "learn me a Haskell," and I'd like to create a new type to represent an integer state, without just using a raw Integer (for type safety and code clarity). Specifically, the following code compiles:
newtype AuxState = AuxState Integer
deriving (Eq, Ord, Num, Integral, Real, Enum)
However, since there are an infinite number of states in my application, I have no interest in converting this state into an Enum. However, if I try to remove the deriving (Enum) statement so it's just deriving (Eq, Ord, Num, Integral, Real), the compiler complains:
No instance for (Enum AuxState)
arising from the 'deriving' clause of a data type declaration
Possible fix:
add an instance declaration for (Enum AuxState)
or use a standalone 'deriving instance' declaration,
so you can specify the instance context yourself
When deriving the instance for (Integral AuxState)
I find it hard to believe that Haskell forces a type in the Integral class to also be in the Enum class; shouldn't it just be the other way around? Is there a reason for this, or am I doing/understanding something wrong?
Enum.Enumdoes not mean a type with a finite number of values. – newacct Apr 11 '12 at 5:13Doubleis anEnum, but obviously notIntegral– newacct Apr 11 '12 at 5:16BoundedwithEnum. For example,Integeris anEnumbut is notBounded. – Dan Burton Apr 11 '12 at 5:59Enummeant, that it was a characteristic of types declared asA | B | C | D, but it's actually a much more general set of characteristics. – btown Apr 11 '12 at 22:27