Tagged Questions

10
votes
2answers
158 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 …
5
votes
2answers
201 views

Haskell: type classes question

I wish to define the following typeclass Mapping: {-# LANGUAGE MultiParamTypeClasses #-} class Mapping k v m where empty :: m v insert :: k -> v -> m v -> m v search :: k -> m v …
5
votes
3answers
320 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 …
4
votes
1answer
83 views

Haskell typeclass

I have a Haskell typeclass question. I can't munge the syntax to get this (seemingly reasonable) program to compile under GHC. import Control.Concurrent.MVar blah1 :: [a] -> IO ([a]) blah1 = …
4
votes
3answers
174 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 …
4
votes
3answers
114 views

Operate on values within structurally similar types in Haskell

Excuse me for my extremely limited Haskell-fu. I have a series of data types, defined in different modules, that are structured the same way: -- in module Foo data Foo = Foo [Param] -- in module …
4
votes
4answers
792 views

F# functions with generic parameter types

Hello, 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 …
2
votes
2answers
373 views

Type classes in Haskell data types

In Haskell, one can define a data type like so: data Point1 = Point1 { x :: Integer , y :: Integer } Can one use type classes for variables inside a data type? If so how? I …
1
vote
3answers
121 views

Haskell dividing num

I'm having an issue I want to learn more about, and how to avoid. I've got this code len :: (Num r ) => [a] -> r len [] = 0 len xs = 1 + len ( tail xs ) avg :: (Num t) => [t] -> Double …
1
vote
2answers
110 views

Is there an encyclopedia/list of common type classes in Haskell?

Is there any website that lists and describes common type classes in Haskell?
1
vote
2answers
165 views

Haskell: Algebric data types whose type variables need to be an instance of a typeclass

I am trying to define an algebric type: data MyType t = MyType t And make it an instance of Show: instance Show (MyType t) where show (MyType x) = "MyType: " ++ (show x) GHC complains becasue …
1
vote
2answers
226 views

Haskell: Creating Type Classes for Zippers

So I've been reading a bit about the Zipper pattern in Haskell (and other functional languages, I suppose) to traverse and modify a data structure, and I thought that this would be a good chance for …
1
vote
4answers
230 views

How does Haskell know which typeclass instance you mean?

This question arose while reading the new chapter in the excellent Learn You a Haskell about applicative functors. The Applicative typeclass has, as part of the definition for the Maybe instance: …
0
votes
2answers
245 views

Haskell: Overlapping instances

Consider the following example program: next :: Int -> Int next i | 0 == m2 = d2 | otherwise = 3 * i + 1 where (d2, m2) = i `divMod` 2 loopIteration :: MaybeT (StateT Int IO) () …
0
votes
1answer
124 views

specialization in type classes using ghc

How can I make the genOut/String fire? module IOStream where import System.IO import System.IO.Unsafe class Out a where out :: a → String instance Show a ⇒ Out a where out = show outString :: …