Type classes in Haskell are a language mechanism to support ad hoc polymorphism.
0
votes
2answers
81 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 ...
14
votes
1answer
143 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 ...
0
votes
1answer
50 views
value of CustomEquality and CustomComparison
I understand the value of asserting
[<StructuralEquality;StructuralComparison>]
This statically forces equality and comparison constraints to be derived structurally, and have a nice side ...
6
votes
1answer
143 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
107 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
87 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
86 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
61 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
94 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 = ...
1
vote
1answer
30 views
How do I overload notation without getting warnings and not using type classes?
First, without knowing much about type classes, it appears that type classes are the best way to overload notation for a type, unless I can't use type classes, or haven't figured out how. I'm not ...
1
vote
2answers
98 views
How can I write a typeclass in scala on a container type, returning an element from the container?
In the following program, I'm trying to get a typeclass to work. The typeclass is Algo, and the actual implementation for it takes a Container[_ <: Id] and is supposed to return an element from ...
0
votes
1answer
48 views
Trying to Treat Type Classes and Sub-types Like Sets and Subsets
This question is related to my previous SO question about
type classes. I ask this question to set up a future question about locales. I don't think type classes will work for what I'm trying to do, ...
4
votes
1answer
84 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
100 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 = ...
2
votes
2answers
84 views
Implicit search decision between multiple alternatives
Is there any way of having multiple suitable alternatives in a type-class where the most specific is chosen, not producing diverging implicit expansion? It would look like this
trait A
trait B ...
3
votes
3answers
170 views
Typeclass and the scala Collection Interface
I am trying to implement a function that would work on types that have a map and a flatMap method. I have already made it for Traversable, but this does not include Future and Option directly. So I ...
14
votes
4answers
308 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 ...
8
votes
1answer
156 views
Using context bounds “negatively” to ensure type class instance is absent from scope
tl;dr: How do I do something like the made up code below:
def notFunctor[M[_] : Not[Functor]](m: M[_]) = s"$m is not a functor"
The 'Not[Functor]', being the made up part here.
I want it to ...
7
votes
1answer
168 views
What is the motivation for type-classes in Scala?
I am having some trouble motivating the use of type classes in Scala when comparing to upper bounds on types.
Consider the following code:
case class NumList[T <: Complex](xs: Complex*) {
...
10
votes
2answers
189 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
126 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
250 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
160 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 ...
1
vote
0answers
61 views
Common supertype bound fails with type class resolution
When I have a generic class like this
case class C [E] (errors : Seq[E]){
def merge [E1 <: EX, EX >: E] (errors1 : Seq[E1]) = Seq[EX]() ++ errors ++ errors1
}
everything works - it merges ...
7
votes
3answers
161 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
1answer
109 views
Scala - Cake Pattern + Typeclasses + Implementations needing constructor parameter
Here is a bit of code I've distilled down as much as I can:
trait CakeLayer[A] extends {
// typeclass hack to make it play nice with traits
implicit def requireTypeclass: MyTypeclass[A]
val ...
2
votes
1answer
48 views
How to make this trait covariant
I want to make the following trait covariant, knowing that DistTraversableLike is covariant in both its type parameters:
trait TraversableNumOps[T, Repr] extends DistTraversableLike[T, Repr] {
...
1
vote
1answer
68 views
Type Class and Subclassing
Suppose I have a type class:
trait ToString[T] {
def toString(t: T): String
}
And the following pimp:
implicit def ToStr[T: ToString](t: T) = new {
def toStr: String = implicitly[ToString[T]] ...
1
vote
3answers
131 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
258 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
344 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] ...
1
vote
1answer
52 views
Typeclass subclassing
I want to limit a parameter of union type of A and B types, where B is some general type, that will be subtyped. I want to put the objects in this method:
def accept[A](a:A)(implicit ...
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
78 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
102 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 ...
7
votes
2answers
299 views
Higher-kinded types—why possible Scala but not F#? [closed]
Given that the CLR generics implementation supports more features than the JVM's, such as reification, and the JVM's generics are a mere Java "compiler trick", why are higher-kinded types not possible ...
0
votes
2answers
152 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
100 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
601 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 ...
3
votes
2answers
237 views
How to write a scalaz.IsEmpty parameter for generic types
I am trying to write a generic method that wraps anything that has an scalaz.IsEmpty typeclass instance into an Option. It should return None for empty values, and wrap it into Some if it is ...
2
votes
1answer
93 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
145 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
151 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 ...
4
votes
1answer
205 views
Creating a more specific implicit using a structural type with Scala
As far as I know there is no shared trait in the collections library that defines the map method (most likely because there are different signatures for map).
I have an observable value (think of a ...
2
votes
4answers
170 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
145 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 ...
2
votes
1answer
61 views
How to share a validation.Constraint across multiple Forms?
I'm using Constraints on my web forms and I've noticed that several forms have similar validations, for instance I have several types of form with a start date and an end date. In each case, I want to ...
4
votes
2answers
158 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 ...



