Tagged Questions

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 ...
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
462 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
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 ...
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
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
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
204 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
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 ...
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 ...