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 ...
14
votes
3answers
258 views
Is there any algebraic structures used in functional programming other then monoid?
I recently getting to know about functional programming (in Haskell and Scala). It's capabilities and elegance is quite charming.
But when I met Monads, which makes use of an algebraic structure ...
11
votes
3answers
647 views
Is there a Haskell equivalent of OOP's abstract classes, using algebraic data types or polymorphism?
In Haskell, is it possible to write a function with a signature that can accept two different (although similar) data types, and operate differently depending on what type is passed in?
An example ...
8
votes
2answers
262 views
Do algebraic datatypes in Haskell equal discriminated unions in F#?
I am learning Haskell and would like to know whether the constructs known in Haskell as algebraic datatypes are the same that discriminated unions in F# or there are some subtle differences between ...
8
votes
2answers
281 views
ADT names. What is `Left a`, and then what is `a`, in Haskell?
If I have a Haskell ADT such as:
data Foo
= A Int Double
| B Bool [Integer]
| C (Maybe String) Float
the A, B, and C are referred to as data constructors; and sometimes as value constructors. ...
6
votes
3answers
270 views
Algebraic data types outside of functional languages?
Mostly out of curiosity: Which languages that are not solely functional (I'm also interested in multi-paradigm languages - I know that Ocaml and F# are ML dialects with OO added, so they inherit the ...
4
votes
1answer
369 views
Defining new data types in Scheme
I first need to mention that I'm quite new to Scheme and as such, the following question might not make too much sense.
At school, we've defined algebraic data types, that typically had a nullary ...