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 ...
6
votes
2answers
193 views
Data Structure Differentiation, Intuition Building
According to this paper differentiation works on data structures.
According to this answer:
Differentiation, the derivative of a data type D (given as D') is the type of D-structures with a ...
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 ...
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 :: ...