Tagged Questions

Type classes in Haskell are a language mechanism to support ad hoc polymorphism.

learn more… | top users | synonyms

30
votes
3answers
467 views

Choosing between a class and a record

Basic question: what design principles should one follow when choosing between using a class or using a record (with polymorphic fields) ? First, we know that classes and records are essentially ...
25
votes
2answers
676 views

Why is a “type class” called “type class”?

When diving deeper into Scala I hit the term type class. It had been confusing because a class is a type and a type could be a class in Scala and "type" and "class" are in itself abstract terms. ...
21
votes
1answer
255 views

How does IncoherentInstances work?

Playing around with some code: {-# LANGUAGE FlexibleInstances, OverlappingInstances #-} class Arity f where arity :: f -> Int instance Arity x where arity _ = 0 instance Arity f => Arity ...
19
votes
6answers
941 views

Orphaned instances in Haskell

When compiling my Haskell application with the -Wall option, GHC complains about orphaned instances, for example: Publisher.hs:45:9: Warning: orphan instance: instance ToSElem Result The type ...
19
votes
2answers
692 views

Can liftM differ from liftA?

According to the Typeclassopedia (among other sources), Applicative logically belongs between Monad and Pointed (and thus Functor) in the type class hierarchy, so we would ideally have something like ...
18
votes
1answer
497 views

Is it possible to implement liftM2 in Scala?

In Haskell, liftM2 can be defined as: liftM2 :: (Monad m) => (a1 -> a2 -> r) -> m a1 -> m a2 -> m r liftM2 f m1 m2 = do x1 <- m1 x2 <- m2 return $ f x1 x2 I'd like to ...
18
votes
5answers
493 views

In Haskell, why isn't there a TypeClass for things that can act like lists?

I'm reading Learn You a Haskell and I'm wondering why so many things are acting like a list, and nothing in the Prelude is using the native facility of type classes to set this up: "The bytestring ...
18
votes
4answers
3k views

Haskell types frustrating a simple 'average' function

I'm playing around with beginner Haskell, and I wanted to write an average function. It seemed like the simplest thing in the world, right? Wrong. It seems like Haskell's type system forbids ...
17
votes
3answers
416 views

Why can I not make String an instance of a typeclass?

Given: data Foo = FooString String … class Fooable a where --(is this a good way to name this?) toFoo :: a -> Foo I want to make String an instance of Fooable: instance Fooable String ...
17
votes
2answers
729 views

How would I translate a Haskell type class into F#?

I'm trying to translate the Haskell core library's Arrows into F# (I think it's a good exercise to understanding Arrows and F# better, and I might be able to use them in a project I'm working on.) ...
16
votes
2answers
274 views

Can traits in D be used for type classes?

I'm new to D, and I'm looking for a good way to program with Haskell-like type classes e.g. Functors, Monoids, etc. in D. Is something like this implemented in Tango or Phobos? I've heard about ...
15
votes
6answers
245 views

How to avoid quadratic explosion of typeclass instances?

Consider: {-# OPTIONS -fglasgow-exts #-} data Second = Second data Minute = Minute data Hour = Hour -- Look Ma', a phantom type! data Time a = Time Int instance Show (Time Second) where show ...
15
votes
4answers
463 views

What is Haskell's Data.Typeable?

I can't find a tutorial or a good description anywhere. Can someone give me some pointers?
14
votes
1answer
234 views

What is the Comonad typeclass in Haskell?

What is the Comonad typeclass in Haskell? As in Comonad from Control.Comonad in the comonad package (explanations of any other packages that provide a Comonad typeclass are also welcome). I've vaguely ...
14
votes
8answers
763 views

Java's Interface and Haskell's type class: differences and similarities?

While I am learning Haskell, I noticed its type class, which is supposed to be a great invention that originated from Haskell. However, in the Wikipedia page on type class: The programmer defines ...
13
votes
3answers
676 views

How do I get an instance of the type class associated with a context bound?

Note: I'm posing this question to answer it myself, but other answers are welcome. Consider the following simple method: def add[T](x: T, y: T)(implicit num: Numeric[T]) = num.plus(x,y) I can ...
12
votes
1answer
255 views

Handling events in Haskell

I would like to implement the following scenario in Haskell. I have an enumerable set of 'events' defined like this: data MyEvent = Event1 | Event2 | Event3 I want to ...
12
votes
1answer
127 views

Can I add an instance declaration in GHCi

I was messing around with HashMap and tried to use a Data.Bson.ObjectId as a key. I, of course, discovered that there is not a Hashable instance for that structure. That's ok, because writing one is ...
12
votes
4answers
410 views

Alternative implementations of Haskell's standard library type classes

I've seen many people complaining about some of the type classes from the standard library saying things like "Monad should require Functor" or even "Monad should require Applicative", "Applicative ...
12
votes
2answers
735 views

How does deriving work in Haskell?

ADTs in Haskell can automatically become instance of some typeclasses (like Show, Eq) by deriving from them. data Maybe a = Nothing | Just a deriving (Eq, Ord) My question is, how does this ...
12
votes
2answers
410 views

What's the “|” for in a Haskell class definition?

I can't figure out what the "| m -> w"-part means in a class definition like this: class (Monoid w, Monad m) => MonadWriter w m | m -> w What additional information does this add to the class ...
12
votes
3answers
493 views

Lifting class instance in Haskell

Is there a way to "lift" a class instance in Haskell easily? I've been frequently needing to create, e.g., Num instances for some classes that are just "lifting" the Num structure through the type ...
12
votes
5answers
543 views

What's wrong with type classes?

Type classes seem to be a great possibility to write generic and reusable functions in a very consistent, efficient and extensible way. But still no "mainstream-language" provides them - On the ...
11
votes
6answers
288 views

What functionality do you get for free with Functors or other type-classes?

I read an article which said: Providing instances for the many standard type-classes [Functors] will immediately give you a lot of functionality for practically free My question is: what is this ...
11
votes
1answer
301 views

How to organize Haskell modules with instances: stick to data type vs type class?

The general question is which module structure is more convenient when adding instances for existing objects? Which pros and cons there are? Let's say I want to add NFData instance for Seq type. I ...
11
votes
2answers
372 views

Appropriate uses of Monad `fail` vs. MonadPlus `mzero`

This is a question that has come up several times for me in the design code, especially libraries. There seems to be some interest in it so I thought it might make a good community wiki. The fail ...
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 ...
11
votes
3answers
566 views

null instead of ==

I have just started to learn Haskell out of interest. I follow learnyouahaskell.com. There I found this: null checks if a list is empty. If it is, it returns True, otherwise it returns False. ...
11
votes
4answers
468 views

Why does Haskell stop short of inferring the datatype's typeclasses in the function signatures?

Firstly, this question isn't 100% specific to Haskell, feel free to comment on the general design of typeclasses, interfaces and types. I'm reading LYAH - creating types and typeclasses The following ...
11
votes
4answers
4k views

F# functions with generic parameter types

I am trying to figure out how to define a function that works on multiple types of parameters (e.g. int and int64). As I understand it, function overloading is not possible in F# (certainly the ...
10
votes
2answers
123 views

Typeclass instance with functional dependencies doesn't work

Playing around with type-classes I came up with the seemingly innocent class Pair p a | p -> a where one :: p -> a two :: p -> a This seems to work fine, e.g. instance Pair [a] a ...
10
votes
1answer
366 views

Naming convention for typeclasses in Scala

In Java world, the naming conventions for interfaces are pretty much well established. For instance, when you say certain class implements the interface Comparable, you can say that it's objects are ...
10
votes
1answer
476 views

Type classes in Scala

Having a background in Haskell I am currently trying to get familiar with Scala. I encountered some problems trying to translate a small, extensible expression language from Haskell into Scala. The ...
10
votes
9answers
1k views

Scala double definition (2 methods have the same type erasure)

I wrote this in scala and it won't compile: class TestDoubleDef{ def foo(p:List[String]) = {} def foo(p:List[Int]) = {} } the compiler notify: [error] double definition: [error] method ...
10
votes
5answers
1k views

Haskell's TypeClasses and Go's Interfaces

What are the similarities and the differences between Haskell's TypeClasses and Go's Interfaces? What are the relative merits / demerits of the two approaches?
10
votes
4answers
2k views

Ambiguous type variable error msg

I don't think it is a bug, but I am a bit puzzled as to why that doesn't work. A bonus question is why does it mention variable e? There is no variable e. Prelude> :m +Control.Exception ...
9
votes
1answer
177 views

Arrow and Monad, two independent viewpoints to compose computations?

I've reading the "The Typeclassopedia" by Brent Yorgey in Monad.Reader#13 ,and found that "the Functor hierachy" is interdependent of "the Category hierachy" as the Figure.1 shown. And according to ...
9
votes
1answer
146 views

writing functions in haskell that work on associated types only

I'm trying to find a more elegant way to write the following code. class C c where type E c :: * -> * class C c => A c where g :: E c a -> E c a class (C c, A c) => D c where ...
9
votes
2answers
299 views

Overloading (+)

I am trying to define a Vector3 data type in haskell and allow the (+) operator to be used on it. I tried the following: data Vector3 = Vector3 Double Double Double Vector3 x y z + Vector3 x' y' ...
9
votes
1answer
299 views

Writing A Function Polymorphic In A Type Family

I was experimenting with type families yesterday and ran into an obstacle with the following code: {-# LANGUAGE TypeFamilies #-} class C a where type A a myLength :: A a -> Int ...
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 ...
9
votes
3answers
182 views

Why does Numeric behave differently than Ordered?

Scala has a number of traits that you can use as type classes, for example Ordered and Numeric in the package scala.math. I can, for example, write a generic method using Ordered like this: def f[T ...
9
votes
6answers
638 views

Haskell typeclasses and C++ template classes

Is it possible to emulate the type class functionality of Haskell with C++ (or C#) templates? Does it make sense or is there any payoff in doing that? I was trying to make a Functor class in C++ and ...
9
votes
2answers
271 views

How does one declare an abstract data container type in Haskell?

I read William Cook's "On Data Abstraction, Revisited", and re-read Ralf Laemmel's "The expression lemma" to try to understand how to apply the former paper's ideas in Haskell. So, I'm trying to ...
9
votes
1answer
362 views

Haskell: Defaulting constraints to type

Consider this example: applyKTimes :: Integral i => i -> (a -> a) -> a -> a applyKTimes 0 _ x = x applyKTimes k f x = applyKTimes (k-1) f (f x) applyThrice :: (a -> a) -> a ...
9
votes
3answers
330 views

Is there a way to implement constraints in Haskell's type classes?

Is there some way (any way) to implement constraints in type classes? As an example of what I'm talking about, suppose I want to implement a Group as a type class. So a type would be a group if there ...
9
votes
3answers
1k views

Haskell Typeclass shorthand

So, I have a pair of typeclasses that I'll be using a lot together, and I want to avoid specifying both each time. Basically, instead of putting :: (Ord a, Fractional a, Ord b, Fractional b, ... Ord ...
8
votes
2answers
197 views

Writing type class instances for nested classes in Scala

In this recent Stack Overflow question, the author wanted to change a list of parsers of some type into a parser that returns lists of that type. We can imagine doing this with Scalaz's sequence for ...
8
votes
2answers
297 views

Would a type class “between” Category and Arrow make sense?

Often you have something like an Applicative without pure, or something like a Monad, but without return. The semigroupoid package covers these cases with Apply and Bind. Now I'm in a similar ...
8
votes
2answers
209 views

Type-class instances for types with 2 parameters when the type-class has only one

Consider the following type-class: class Listable a where asList :: a t -> [t] It's easy enough to create instances for types with one parameter: instance Listable [] where asList = id ...

1 2 3 4 5