Tagged Questions
4
votes
2answers
173 views
I want to write a function which is similar to `flip` in Haskell to get rid of lambda expressions. But I can't deal with it's type
I want to write a Haskell function which acts like flip but is far more general and can make any parameter of a function be the last parameter. For convenience, we use pull to represent it.
It is ...
6
votes
1answer
103 views
Inconsistent Eq and Ord instances?
I have a large Haskell program which is running dismayingly slow. Profiling and testing has revealed that a large fraction of the time is spend comparing equality and ordering of a particular large ...
2
votes
1answer
68 views
Haskell: typeclass and instance (Not in scope: data constructor..)
I want to make a typeclass Size with a method that given a value computes the number of
constructors in this value.
class Size a where
size :: a -> Int
instance Size Int where
size a = 1
...
5
votes
1answer
109 views
Fundeps for constraint families
A lot of constraints seem to come together. Let's abstract these away.
type MonadNumState a m = (MonadState a m, Num a)
MonadNumState is just a constraint synonym, so I get the benefit of ...
4
votes
1answer
82 views
GHCI stack overflow on `instance Show MyType`
Why do I get stack overflow trying to do this in GHCI (version 7.6.2)? How can I derive a typeclass instance during a GHCI session or why is this not possible?
*Main> data T = T Int
*Main> let ...
5
votes
2answers
150 views
How does Haskell choose methods for instances of type classes?
I was trying to understand why Haskell's show treats
a list of chars different from a list of e.g. integers
even without the FlexibleInstances Pragma.
Having read through the documentation of Show, I ...
1
vote
1answer
75 views
How can I resolve this type class ambiguity?
Here's my minimal example:
{-# LANGUAGE MultiParamTypeClasses, RankNTypes #-}
import Control.Lens
class Into outer inner where
factory :: inner -> outer
merge :: inner -> inner -> ...
0
votes
2answers
89 views
Dirty hack for overlapping instances?
Module A imports modules B and C
Module B imports instance X
Module C imports instance Y
X and Y are instances of a common type class.
Instances X and Y are identical in type, that is, fully ...
20
votes
1answer
326 views
Correspondence between type classes and grammar levels in the Chomsky hierarchy
My question is about the Applicative and Monad type classes on the one hand, and the context-free and context-sensitive grammar levels of the Chomsky hierarchy on the other.
I've heard that there's a ...
6
votes
1answer
155 views
Typeclass for functions with different numbers of arguments
In my simple Haskell DSL, I have the following functions to call other functions:
callF :: forall a. (Typeable a)
=> (V a) -> (V a)
callF fp@(V (FunP name)) =
pack $ FunAppl (prettyV fp) []
...
5
votes
4answers
110 views
Return one of two types of same typeclass
I have the following type class
class MyClass c where
aFunction :: c -> Bool
and two instances for two different data types
data MyDataType1 = MyDataType1
instance MyClass MyDataType1 where
...
5
votes
1answer
90 views
Universally-generalized constraints
Here's a pretty useful class:
class Foo f a where
foo :: f a
It let's me make default values for lots of types. In fact, I might not even need to know what a is.
instance Foo Maybe a where
...
6
votes
1answer
115 views
How to tell Haskell to not import the same instance from two modules?
I'm using the following typeclass:
module T where
class T a where
v :: a
An instance of T Int that I implemented:
import T
import A (av)
instance T Int where
v = 0
main = putStrLn (av ++ ...
0
votes
2answers
63 views
Ambigous Occurence
I am currently learning how to write type classes. I can't seem to write the Ord type class with compile errors of ambiguous occurrence.
module Practice where
class (Eq a) => Ord a where
...
5
votes
1answer
97 views
How should types be used in Haskell type classes?
I'm new to Haskell, and a little confused about how type classes work. Here's a simplified example of something I'm trying to do:
data ListOfInts = ListOfInts {value :: [Int]}
data ListOfDoubles = ...
4
votes
1answer
88 views
Semantics for GHC extension allowing constraints on methods (-XConstrainedClassMethods)
The following is quoted from the GHC user guide (Haskell Platform 2012.4.0.0)...
7.6.1.3. Class method types
Haskell 98 prohibits class method types to mention constraints on the class type ...
6
votes
2answers
108 views
Multi-parameter type synonym instances
I'm trying to figure out if it's possible (and how) to define class instances for multi-parameter type synonyms.
For example:
{-# LANGUAGE MultiParamTypeClasses, FlexibleInstances #-}
type F a b = ...
14
votes
4answers
333 views
Extensible Haskell Type Classes
I am reading a paper on dependently-typed programming and came across the following quote:
"[...] in contrast to Haskell's type classes, the data type [...] is closed", in the sense that one cannot ...
10
votes
2answers
190 views
Why can classes be used as type parameters and what for?
I've accidentally discovered that the following is a perfectly compiling code:
class SomeClass a
someValue :: Maybe (SomeClass a)
someValue = undefined
I'm only used to seeing classes in type ...
6
votes
1answer
131 views
Haskell inheriting type classes
Suppose I have the following class:
class P a where
nameOf :: a -> String
I would like to declare that all instances of this class are automatically instances of Show. My first attempt would ...
7
votes
3answers
254 views
What actually $ function does in haskell?
I know
$ :: (a->b) -> a -> b
f $ x = f x
Intuitively it seems to me, like to say,
1. $ delays the evaluation of the function to its left
2. evaluates whats to its right
3. feeds the ...
3
votes
1answer
173 views
Redesign of Haskell type classes
After getting some help, understanding the problem I had trying to compile the code, in this question (Trouble understanding GHC complaint about ambiguity) Will Ness suggested I redesign my type ...
7
votes
3answers
165 views
How to have an operator which adds/subtracts both absolute and relative values, in Haskell
(Apologies for the weird title, but I could not think of a better one.)
For a personal Haskell project I want to have the concepts of 'absolute values' (like a frequency) and relative values (like ...
1
vote
3answers
134 views
Unable to instantiate class due to missing instance
I have this haskell code. In that I have created two data types, then I want to to create a new class Mord that can do comparing functions with Mlist types.
import Data.List
data Mlist a = Mlist [a]
...
8
votes
2answers
266 views
Why are there no “general” accessor functions for tuples in Haskell?
I know there is fst and snd, but why is there no "general" definition for such accessor functions using type classes? I would suggest something like
class Get1 p a | p -> a where
get1 :: p -> ...
1
vote
1answer
95 views
Can't use list of typeclasses inside data declaration
I'm new to Haskell and I like the programming approach of it a lot!
I've been running into this problem for the past 2 days, and no matter what I try, it refuses to work. I think I am confusing ...
20
votes
1answer
351 views
Proposal for local data declarations / instances
I'm curious, and have been unable to find a proposal for something like this in Haskell. Consider if sort had been written but not sortBy.
sortBy :: forall a. (a -> a -> Ordering) -> [a] ...
2
votes
1answer
109 views
Haskell: | in a class statement [duplicate]
I'm reading Monad Transformers Step by Step. On page 6, while introducing some subclasses of Monad, the writer gives the following code examples:
class (Monad m) => MonadError e m | m -> e ...
3
votes
1answer
79 views
Defining a class with functor-ish and non-functor-ish functions
I want to define a class m that provides an functor-ish operation with
a type signature like this:
mapify :: (a -> b) -> m a -> m b
I needed some other non-functor-ish operations as well, though. I ...
7
votes
1answer
104 views
What language extensions does the MTL library require?
I'm trying to understand monad transformers by implementing my own tiny library based on the designs of existing ones.
What I'm stuck on is the language extensions. In MonadError, the only ...
0
votes
2answers
165 views
Derive Eq and Show for type alias in Haskell
I've the following type alias
data Bindable = Const Value
| Variable Location
| Func Function
| Proc
deriving (Eq, ...
8
votes
3answers
217 views
Why do all Haskell typeclasses have laws?
All the typeclasses in Typeclassopedia have associated laws, such as associativity or commutativity for certain operators. The definition of a "law" seems to be a constraint that cannot be expressed ...
2
votes
2answers
101 views
Accessing the phantom type of the return value
Below is an implementation of modular arithmetic Num instance that is modeled after Data.Fixed.
I'd like to write an alternate implementation of fromRational which would look something like:
...
18
votes
4answers
642 views
What's the closest thing to Haskell's typeclasses in OCaml?
What are some ways that I can accomplish what Haskell's typeclasses do in OCaml? Basically, I want to write a polymorphic function without writing too much code. The typical way to do polymorphism is ...
2
votes
1answer
94 views
lazy list reconstructed based on concreteness of its type?
I wrote a simple (and unserious) prime number generator in Haskell, with mutually-recursive definitions for generating the primes and for determining the primeness of a number:
primes :: (Integral a) ...
2
votes
2answers
149 views
Ambiguous type variable when programming an AI Solver in Haskell
I'm programming an AI General Problem Solver in Haskell for the AI Planning course at Coursera and ghci complains about an ambiguous type variable. Here is the Haskell code and the error I get:
-- ...
6
votes
3answers
152 views
Showing the type A -> A
data A = Num Int
| Fun (A -> A) String deriving Show
instance Show (Fun (A -> A) String) where
show (Fun f s) = s
I would like to have an attribute for a function A -> A to print ...
2
votes
4answers
174 views
Declaring a type class for multiplication of an N-by-N-element matrix and an N-element column vector
In Haskell, if you have a "family" of types (say, N-by-N-element matrices, for some values of N), and a parallel family of "related" types (say, N-element vectors, for the same values of N), and an ...
4
votes
5answers
149 views
Two instance of the same type class for the same type
Imagine we have a Haskell program which uses a library. The program provides a typeclass TC instance for a type T from one of its dependencies. In the next version of the same library, the library ...
4
votes
2answers
163 views
How to Interpret (Eq a)
I need to create a function of two parameters, an Int and a [Int], that returns a new [Int] with all occurrences of the first parameter removed.
I can create the function easily enough, both with ...
16
votes
2answers
526 views
Why aren't Nums Ords in Haskell?
I know that for a type to have an instance of the Num typeclass, there must be one from Eq and Show
class (Eq a, Show a) => Num a
I'm wondering why it's required to be Eq rather than Ord. Does ...
5
votes
3answers
213 views
Why can't I compare tuples of arbitrary length in Haskell?
I know that there are predefined Eq instances for tuples of lengths 2 to 15.
Why aren't tuples defined as some kind of recursive datatype such that they can be decomposed, allowing a definition of a ...
8
votes
2answers
163 views
Understanding a rank 2 type alias with a class constraint
I have code that frequently uses functions that look like
foo :: (MyMonad m) => MyType a -> MyOtherType a -> ListT m a
To try to shorten this, I wrote the following type alias:
type FooT ...
0
votes
1answer
122 views
mod function and type classes in haskell
i have this line of code in haskell, where level :: Float, and y :: Int,
mod (floor(fromIntegral y + (level/2))) (floor level)
and ghci returns me the following:
No instance for (Integral Float)
...
3
votes
2answers
91 views
Expressing typeclass relations with functional dependencies in Haskell
I want to express that I have 3 related typeclasses.
I have two files. First:
{-# LANGUAGE MultiParamTypeClasses, FunctionalDependencies #-}
module ModA where
class Class a b c | a -> b, b -> ...
1
vote
1answer
123 views
Haskell Read type Inference
I have written my own implementation of a graph based on adjacency matrices and made instance of the Read class.
My graph takes a type as input which will be the type of the edges.
If I try ...
2
votes
1answer
119 views
How to print result of function “add” from class “Add” from “Fun with Type Functions”
Below the code from here Fun with Type Functions
{-# LANGUAGE MultiParamTypeClasses, FlexibleInstances, FlexibleContexts, TypeFamilies #-}
-- Start basic
class Add a b where
type SumTy a b
add ...
0
votes
1answer
162 views
Why is the () in Haskell a Enum type but haven't implemented the succ function
I find
Prelude> :i ()
data () = () -- Defined in `GHC.Tuple'
instance Bounded () -- Defined in `GHC.Enum'
instance Enum () -- Defined in `GHC.Enum'
instance Eq () -- Defined in `GHC.Classes'
...
0
votes
1answer
91 views
Predicate with forall quantifier in haskell?
I want to write the function which accepts values of types, which has instances of multiparameter type class together with every type. Something like this (signature of test function is illegal):
...
5
votes
1answer
93 views
Haskell Eq definition realizing a result
I was reading the definition for the Eq typeclass in the Data library, and I'm confused. At what point is it realized that two values are equal or not equal. From what I see, it looks like they would ...




