I've defined the following type in Haskell:
data AE = Num Float
| Add AE AE
| Sub AE AE
| Mult AE AE
| Div AE AE
deriving(Eq, Read, Show)
Now how do I deconstruct it? Specifically, how would I complete a function as follows:
testFunct :: AE -> something
testFunct expression
| if type Num = do this
| if type Add = then do this
etc.
Also, how would I get the data out of the type? For instance, if I have Sub AE1 AE2 how would I extract AE2?
data Op = Add | Sub | Mult | Div; data AE = Num Float | Bin Op AE AE. This cuts down on repetition in the type, and may make certain functions on this type considerably more compact. – Daniel Wagner Oct 1 '11 at 14:30