Tagged Questions
Algebraic data types are data structures built from sums, products and recursive types, admitting an algebra. Descriptions of types given as ADTs may be manipulated symbolically to derive other related data structures. The logic for building types algebraically is related to combinatorial species in combinatorial mathematics.
26
votes
1answer
1k views
Memory footprint of Haskell data types
How to find the actual amount of memory required to store a value of some data type in Haskell (mostly with GHC)? Is it possible to evaluate it in runtime (e.g. in GHCi) or is it possible to estimate ...
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 ...
12
votes
5answers
307 views
Creating functions over Enumerations
I just started learning Haskell. I think I've got the basics down, but I want to make sure I'm actually forcing myself to think functionally too.
data Dir = Right | Left | Front | Back | Up | Down ...
11
votes
3answers
461 views
Haskell data types usage good practicies
Reading "Real world Haskell" i found some intresting question about data types:
This pattern matching and positional
data access make it look like you have
very tight coupling between data and
...
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 ...
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
...
8
votes
2answers
260 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. ...
7
votes
1answer
359 views
Recursive bottom-up traversal of algebraic data types
When dealing with sizeable algebraic data types in Haskell, there is a particular recursive traversal not captured by folding over the data type. For instance, suppose I have a simple data type ...
6
votes
2answers
192 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
311 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 ...
6
votes
2answers
171 views
Overhead of using classes for matrix of algebraic structures in C++
I am using C++ to code some complicated FFT algorithm, so I need to implement such algebraic structures as quaternions and Hamilton-Eisenstein codes. Algorithm works with 2D array of that structures. ...
6
votes
3answers
269 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 ...
5
votes
2answers
148 views
Parameterizing types by integers in Haskell
I am trying to make some Haskell types which are parametrized not by types but by elements of a type, specifically, integers. For instance, a (linear-algebra) vector in R^2 and a vector in R^3 are ...
4
votes
2answers
138 views
Are there default values for record getters in Haskell?
There is unsurprisingly a run time exception thrown by the following code :
data Necklace = InvalidNecklace |
Necklace { necklace_id :: Int, meow :: Int, ... }
necklace_id InvalidNecklace
Is ...
4
votes
1answer
139 views
Representing Data Types With Variable Variables
I am attempting to represent formulae with variables ranging over, for instance, either formulae or variables and constants:
R(a,b) -> Q [Q takes formulae as substitutions]
R(x,b) v P(b) [x ...
4
votes
4answers
209 views
Is there a single word that means “non-recursive datatype with two constructors”?
Is there a word that describes data types that
have exactly two constructors; and
are not recursive?
i.e. describes these types
data Bool = False | True
data Maybe a = Nothing | Just a
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
1answer
368 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 ...
4
votes
3answers
437 views
ADTs in F# and Scala
What are the key differences between ADTs in F# and Scala? Is there anything that F#'s ADTs can do but Scala's ADTs cannot (and vice versa)?
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
1answer
115 views
Haskell typeclasses with algebraic data types
I have some algebraic data types A, B, and C each implements the class:
class Dog a where
dog :: a -> Bool
If I create a new algebraic data type:
data D = A | B | C
Is there an easy way ...
3
votes
3answers
229 views
Type-safe discriminated unions in C#, or: How to limit the number of implementations of an interface?
First, sorry for the lengthy post. Basically, my question is this:
I'm trying to reproduce the following F# discriminated union type in C#:
type Relation =
| LessThan of obj * obj
| ...
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 :: ...
2
votes
1answer
85 views
Is there a better way to express this type?
I've made this data type, which has a lot of repetition in it.
data JobState = UnsanitizedData Handle
| SanitizedData Handle
| VerifiedData Handle
| JobFail ...
2
votes
1answer
174 views
Haskell — bidirectional class instance type implications OR GADT existential type qualifications?
I have a GADT defined like (abbreviated),
{-# LANGUAGE StandaloneDeriving #-}
data D t where
C :: t -> D t
R :: D b -> D (Either a b)
deriving instance Show t => Show (D t)
The ...
2
votes
2answers
203 views
Polymorphism scenario in Haskell
I have written the following Haskell program to interpret basic math. I would like to add comparison and boolean operators in addition to mathematical operators. My question is how I should go about ...
2
votes
1answer
221 views
Haskell “not a visible field of constructor” error
I'm getting an error I don't quite understand:
AnotherModule.hs:6:38:
`something' is not a (visible) field of constructor `M.SomeType'
AnotherModule.hs:7:38:
`somethingElse' is not a ...
1
vote
0answers
25 views
XML schemas for modelling finite algebraic structures and substructures
Are there any ready-to-use XML schemas for modelling finite algebraic structures such as finite rings, finite groups, finite fields etc.? Or I should I think about OpenMath? There is no clear and ...
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 ...
1
vote
1answer
107 views
F# / SIlverlight Binding to algebraic datatypes
Given a data structure of:
type Candidate = SalesRep of SalesRep | Analyst of Analyst
type ScorableCandidate = {
candidate: Candidate ;
mutable comments: string ;
mutable score: int ;
}
...
1
vote
1answer
107 views
Defining recursive algebraic data types in XML XSD
Imagine I have a recursive algebraic data type like this (Haskell syntax):
data Expr = Zero
| One
| Add Expr Expr
| Mul Expr Expr
I'd like to represent this in XML, ...
0
votes
5answers
70 views
Are there any uses for untyped unions(w/out a type tag)?
Other then memory casting tricks is there any way to use an untagged union
(a data type that explicitly hold one of a set of types that isn't a tagged union,
ie. one that is forced by the compiler ...
0
votes
2answers
138 views
constructing data-type instances from CSV
I have CSV data (inherited - no choice here) which I need to use to create data type instances in Haskell. parsing CSV is no problem - tutorials and APIs abound.
Here's what 'show' generates for my ...