Tagged Questions
21
votes
8answers
5k views
Haskell's algebraic data types
I'm trying to fully understand all of Haskell's concepts.
In what ways are algebraic data types similar to generic types, e.g., in C# and Java? And how are they different? What's so algebraic about ...
9
votes
2answers
306 views
Overriding (==) in Haskell
I have the following algebraic data types:
data Exp
= Con Int
| Var String
| Op Opkind Exp Exp
| Input
deriving (Show,Eq)
data Opkind
= Plus | Minus | Mult | Div | More | Equal
...
6
votes
2answers
312 views
What are “sums-and-products” data structures?
A recent blog post on William Cook's Fusings mentions:
The key point is that structures in EnsÅ are viewed holistically as graphs, not as individual values or traditional sums-and-products data ...
4
votes
2answers
279 views
Generic type transformations in Haskell
I'm trying to write an arrow transformer that takes regular functions, and turns them into computations on abstract values. If we have a "source" arrow,
f :: Int -> Int
f x = x + 1
then the goal ...
4
votes
5answers
548 views
“Pattern matching” of algebraic type data constructors
Let's consider a data type with many constructors:
data T = Alpha Int | Beta Int | Gamma Int Int | Delta Int
I want to write a function to check if two values are produced with the same ...
3
votes
4answers
369 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 :: ...
1
vote
3answers
381 views
Is it possible to define new ADTs in GHCi
While commenting on new features in ghci I wished that ghci had the ability to declare type declaration and declaring new ADT types, someone informed that it was indeed possible, and after searching I ...