Type families are Haskell language extension to facilitate type-level programming, via ad-hoc overloading of *data types*. They are the data equivalent of type classes (which allow overloading of functions).
4
votes
2answers
90 views
Type classes, associated families -> containers, keys, and elements: Who is who?
Reading about type families on haskellwiki, I see the example
class Collects ce where
type Elem ce
empty :: ce
insert :: Elem ce -> ce -> ce
This makes sense to me, as I use my ...
5
votes
1answer
116 views
Type Families extension does not work as described
On the Haskell wiki page for Type Families, there is the following list of examples:
type family F a :: *
type instance F [Int] = Int -- OK!
type instance F String = ...
6
votes
1answer
64 views
Hierarchical module name for type-level programs
So let's say I wrote some type-level program in Haskell:
type family NAryFn (n::Nat) (dom::*) (cod::*) :: *
type instance NAryFn Ze dom cod = cod
type instance NAryFn (Su n) dom cod = dom -> ...
2
votes
1answer
107 views
Simplify type signatures when using type families?
I'm rewriting some of my libraries to use type families instead of functional dependencies. However, it seems like some of the constraints that I have to add to functions in order to get them to ...
1
vote
1answer
65 views
How to write gcast for type families?
I'm trying to write a variant of Data.Typeable.gcast which works for type families of kind * -> *. What I'm looking for is:
{-# LANGUAGE TypeFamilies #-}
import Data.Typeable
type family T
...
2
votes
1answer
99 views
Type families and type constructors
I'm working on replacing multi-parameter type classes in some of my libraries with type synonyms. Everything was going great until I needed to work with a type constructor. The last two lines of this ...
2
votes
1answer
130 views
Return Type as a result of Term or Value calculation
I'm trying to get a good grasp on Kinds, Types & Terms(or Values, not sure which is correct) and the GHC extensions for manipulating them. I understand that we can use TypeFamilies to write ...
2
votes
1answer
116 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 ...
7
votes
1answer
151 views
data families use cases
Benefits of using type synonym families is clear - it is type-level functions.
But it is not the case with data families - so my question is, what is use-cases for data families? Where should I use ...
4
votes
1answer
103 views
Using constraint kinds and type families with 'limited' constraints
I'm working on an applicative functor that contains a monoid to "view" the execution. However, sometimes I don't care about this part at all, so the choice of monoid is irrelevant as it will never be ...
6
votes
2answers
216 views
Illegal polymorphic or qualified type using RankNTypes and TypeFamilies
I've been slowly working on porting the llvm package to use data kinds, type families and type-nats and ran into a minor issue when trying to remove the two newtypes used for classifying values ...
0
votes
1answer
90 views
Type families - Couldn't match type
I'm baffled by this compiler error message I'm getting. The functions addAgent and withAgent have similar type signatures and similar implementations, so I don't understand why addAgent compiles but ...
7
votes
1answer
173 views
Expand type synonyms, type families with GHCi
I am wondering if there is functionality that exists within GHCi (or elsewhere) to expand type synonyms and families out of an arbitrary type expression.
For example, if I have these types,
data A = ...
9
votes
1answer
429 views
Type Families with GHC.Generics or Data.Data
This is a question related to my module here, and is simplified a bit. It's also related to this previous question, in which I oversimplified my problem and didn't get the answer I was looking for. I ...
10
votes
1answer
161 views
Deriving instances with TypeFamilies
I have a type class Foo with an associated type:
{-# LANGUAGE TypeFamilies #-}
class Foo a where
type Bar a
foo :: a -> Bar a
Now I want to define a data type that holds one of the ...
7
votes
1answer
177 views
Are type family instance proofs possible?
First, I started with some typical type-level natural number stuff.
{-# LANGUAGE KindSignatures #-}
{-# LANGUAGE DataKinds #-}
{-# LANGUAGE GADTs #-}
{-# LANGUAGE TypeFamilies #-}
data Nat = Z | S ...
3
votes
2answers
199 views
functional dependencies vs type families
I'm developing a framework for running experiments with artificial life, and I'm trying to use type families instead of functional dependencies. Type families seems to be the preferred approach among ...
2
votes
1answer
320 views
Playing with DataKinds - Kind mis-match errors
I've been teaching myself about type-level programming and wanted to write a simple natural number addition type function. My first version which works is as follows:
data Z
data S n
type One = S Z
...
3
votes
2answers
174 views
Is there a flexible way of specifying return types for Haskell's type families?
Recently I started using Haskell's Repa library, which relies heavily on type families and associated types. I can define a Repa array like this:
ghci> let x = fromListUnboxed (Z :. (5 :: Int) :. ...
21
votes
1answer
518 views
Matching on type level Nat in GHC 7.6
My question is probably easiest to explain in the form of an example:
type family Take (n :: Nat) (xs :: [k]) :: [k]
type instance Take 0 xs = '[]
type instance Take (n+1) (x ': xs) = x ...
7
votes
2answers
137 views
Getting rid of “non-exhaustive patten matches” warning when restricting GADTs with type families
Given the following program:
{-# LANGUAGE DataKinds, GADTs #-}
{-# LANGUAGE TypeFamilies #-}
data Foo = A | B
type family IsA (foo :: Foo) :: Bool
type instance IsA A = True
type instance IsA B = ...
5
votes
2answers
99 views
Guarantee that type families will derive certain classes
I have something like the following:
{-# LANGUAGE TypeFamilies #-}
class Configuration c where
data Pig c
data Cow c
parsePig :: GenParser Char st (Pig c)
parseCow :: GenParser Char ...
9
votes
1answer
196 views
Default type instances referring to each other
Is there a way to have default type instances defined in terms of each other? I'm trying to get something like this working:
{-# LANGUAGE DataKinds, KindSignatures #-}
{-# LANGUAGE TypeFamilies #-}
...
6
votes
2answers
269 views
Recursive Type Families
I am experimenting with an mtl-style class that allows me to lift Pipe composition over an outer monad. To do so, I must define which two variables of the type are the domain and codomain of Pipe ...
5
votes
1answer
143 views
Is this use of UndecidableInstances okay? Alternatives?
I would like to do some magic in a library, allowing a product type to be destructured polymorphically. This is a more or less working mockup illustrating what I'd like to do:
{-# LANGUAGE ...
0
votes
1answer
126 views
Unifying associated type synonyms with class constraints
I have a nested type that I want to partially specify using associated type synonyms. Below is some extremely reduced code that demonstrates the problem:
{-# LANGUAGE TypeFamilies,
FlexibleInstances,
...
4
votes
2answers
205 views
Automatic derivation of Data.Vector.Unbox with associated type synonyms
I have a datatype
newtype Zq q = Zq (IntType q)
where 'q' will be an instance of the class
class Foo a where
type IntType a
and 'IntType' is just the underlying representation (i.e. Int, ...
13
votes
2answers
246 views
How to put constraints on the associated data?
I would like to state that the associated data is always an instance of a certain class.
class (Context (Associated a b)) => Class a where
data Associated a :: * -> *
instance Context ...
3
votes
1answer
119 views
How to produce a polymorphic “unit scalar” for using with Data.VectorSpace
So I'm using Data.VectorSpace and I'm trying to extend on force-layout.
Now I want to produce a polymorphic '1'-scalar. That is, a scalar that, if it were multiplied with a vector, would produce the ...
1
vote
1answer
96 views
Making VectorSpace.Scalar instance of Eq
Note: I may not need to add Scalar to Eq, although it should solve the problem if I could figure out how to do just that.
So I'm trying to add some functionality to the ForceLayout module. Adding ...
3
votes
2answers
172 views
Type-threaded heterogenous lists and defaulting(?) with type families?
I'm working on a library where I want to define a recursive class that I've simplified here to:
{-# LANGUAGE MultiParamTypeClasses
, FlexibleInstances #-}
data Snoc st b c = Snoc (st b) ...
1
vote
2answers
209 views
Haskell: Instance definitions for type families
Lets say we have the following code:
class C t where
g :: t
instance C Int where
g = 42
Simple. We can also define functions on Int, like so:
f1 :: Int -> Int
f1 x = x * x
I've been ...
4
votes
1answer
184 views
Haskell type families, understanding error message
Upon trying to use Data.Has, I've been writing code like the following:
data Name = Name; type instance TypeOf Name = Text
type NameRecord = FieldOf Name;
I've found:
instance I NameRecord where
...
1
vote
2answers
163 views
Writing a function (a -> b -> … -> t) -> (Monad m => m a -> m b -> … -> m t)
Is there some way to write a function f :: (a -> b -> ... -> t) -> (Monad m => m a -> m b -> ... -> m t), basically liftMn for any n?
(EDIT: fixed nonsensical example.)
I'm ...
4
votes
3answers
134 views
Convert type family instances to Int
I have this code:
type family Id obj :: *
type instance Id Box = Int
And I want to make it so I can always get an Int from the Id type family. I recognize that a conversion will be required.
I ...
9
votes
2answers
264 views
Type constraints on all type family instances
I suppose what I want is impossible without Template Haskell but I'll ask anyway.
I have an interface for types like Data.Set and Data.IntSet:
type family Elem s :: *
class SetLike s where
insert ...
5
votes
3answers
217 views
How to write a family of printf functions (debug print, etc.) in Haskell
This is a challenge problem more than a useful problem (I've spent a few hours on it). Given some functions,
put_debug, put_err :: String -> IO ()
put_foo :: String -> StateT [String] m ()
I ...
4
votes
1answer
177 views
How to get around the Coverage Condition for Functional Dependencies without using -XUndecidableInstances
Wen using functional dependencies, I frequently hit the Coverage Condition. It is possible to lift it with UndecidableInstances, but I usually try to stay away from that extension.
Here is a ...
5
votes
1answer
222 views
What does this 'Ambiguous type variable `a` in the constraint' mean?
In this code I am trying to have the first parameter in my worker function go be a 'type family' type. I see that in the type type families documentation a similar insert function belongs to the type ...
7
votes
1answer
288 views
Haskell: shuffling data without functional dependencies
I'm trying to implement a Fisher-Yates shuffle of some data. This algorithm is easy to implement for one-dimensional arrays. However, I need to be able to shuffle data in a two-dimensional matrix.
An ...
9
votes
1answer
148 views
adding ghci's inferred type signature causes an error
Edit: Here's a truly simple example. Motivation for this example below.
This compiles:
{-# LANGUAGE TypeFamilies #-}
type family F a b
f :: a -> F a b
f = undefined
f' [a] = f a
And ghci ...
0
votes
1answer
173 views
Variadic arguments, using Type Families instead of Multi-param Typeclasses
Here's what I've got, expressed with MultiParamTypeClasses:
class ListResultMult r a where
lstM :: a -> [a] -> r
listM :: ListResultMult r a => a -> r
listM a = lstM a []
instance ...
1
vote
1answer
227 views
monads-tf: MonadReader instance for MonadState
Consider the next example. I have a monad MyM that is just a StateT
{-# LANGUAGE TypeFamilies #-}
import Control.Monad.State
import Control.Monad.Reader
type MyS = Int
type MyM = StateT MyS
...
3
votes
1answer
192 views
Please explain type synonyms
I am learning so may be this is a trivial question.
In the code generated by yesod scaffolding tool I found this expression:
type YesodPersistBackend PersistTest = SqlPersist
My understanding is ...
11
votes
1answer
390 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
...
2
votes
2answers
391 views
Functional Dependencies / Type Families - AST
I was recently introduced to functional dependencies and type families. For a class project I wrote (completed) an interpreter for a subset of C in Java and Haskell. The Haskell implementation of an ...
4
votes
1answer
276 views
Info on type family instances
Intro:
While checking out snoyman's "persistent" library I found myself wanting ghci's (or another tool) assistance in figuring out stuff.
ghci's :info doesn't seem to work as nicely with ...
2
votes
3answers
383 views
Problem when mixing type classes and type families
This code compiles fine:
{-# LANGUAGE MultiParamTypeClasses, FunctionalDependencies, FlexibleInstances,
UndecidableInstances, FlexibleContexts, EmptyDataDecls, ScopedTypeVariables,
TypeOperators, ...
4
votes
2answers
819 views
Haskell type families and dummy arguments
I made a function similar to numpy's array. It converts lists to arrays, lists of lists to 2d arrays, etc.
It works like this:
ghci> arrFromNestedLists ["hello", "world"] :: Array (Int, (Int, ...