Tagged Questions

0
votes
4answers
145 views

Choosing among alternatives in a Haskell algebraic datatype

When type X is defined as: data X = X { sVal :: String } | I { iVal :: Int } | B { bVal :: Bool } and I want the Int inside an X value, if there is one, otherwise zero. returnInt :: …
11
votes
8answers
544 views

Why are Haskell algebraic data types “closed”?

Correct me if I'm wrong, but it seems like algebraic data types in Haskell are useful in many of the cases where you would use classes and inheritance in OO languages. But there is a big difference: …