The tag has no wiki summary.

learn more… | top users | synonyms

18
votes
3answers
739 views

Testing an assertion that something must not compile

The problem When I'm working with libraries that support type-level programming, I often find myself writing comments like the following (from an example presented by Paul Snively at Strange Loop ...
8
votes
1answer
194 views

haskell - How can I go from values to types?

Imagine I have the following data types and type classes (with proper language extensions): data Zero=Zero data Succ n = Succ n class Countable t where count :: t -> Int instance Countable ...
6
votes
1answer
125 views

Can I differentiate between typeclass instances at runtime?

Is it possible to implement a type class as follows: class SomeClass e where isEq :: (SomeClass e') => e -> e' -> Bool where isEq x y would return true when x and y are both the same ...
5
votes
1answer
287 views

Converting integers to peano numbers using the type system

This is a follow-up of a question I asked almost two years ago. I am still experimenting with the type system to write a small linear algebra library where the dimensions of vectors/matrices/tensors ...
10
votes
1answer
222 views

How does haskell resolve overlapping instances?

Please excuse me if I use the wrong terminology, I am much a beginner in haskell type manipulation... I am trying to use overlapping instances with functional dependencies to do some type-level ...
12
votes
1answer
143 views

haskell - generate an instance for all classes except one specific type

Is it possible to do something like class T a class U a instance U () instance ( NOT U a ) => T a Context: I am trying to write a function that takes HLists and removes elements of a certain ...
2
votes
1answer
102 views

Map on HList in method with Poly1 based on type parameter of class

I have class, parameterized with HList and some other type. How can I use map on HList in one of its methods? Compilation of this code throws java.lang.AssertionError: class Test[L <: HList, ...
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 ...
2
votes
1answer
334 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 ...
22
votes
1answer
528 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 ...
14
votes
3answers
430 views

Applying a fixed-length-vector-function to the inital part of a longer fixed-length-vector

I have the following definition of fixed-length-vectors using ghcs extensions GADTs, TypeOperators and DataKinds: data Vec n a where T :: Vec VZero a (:.) :: a -> Vec n a -> Vec ...
3
votes
1answer
169 views

Int value of Prod in shapeless

Playing around with shapeless natural numbers in excitement, I wonder what could be the best approach to getting the integer value of e.g. a product of nats. Excerpt from shapeless nat.scala: trait ...
13
votes
2answers
320 views

Are there “type-level combinators”? Will they exist in some future?

Much of what makes haskell really nice to use in my opinion are combinators such as (.), flip, $ <*> and etc. It feels almost like I can create new syntax when I need to. Some time ago I was ...
4
votes
2answers
246 views

Can I statically reject different instantiations of an existential type?

First attempt It's difficult to make this question pithy, but to provide a minimal example, suppose I have this type: {-# LANGUAGE GADTs #-} data Val where Val :: Eq a => a -> Val This ...
8
votes
1answer
139 views

Numeric type signature

Is it possible to create a type with a numeric argument? i.e. if I want to create a type of integers with a fixed bit-width: newtype FixedWidth w = FixedWidth Integer addFixedWidth :: FixedWidth w ...
13
votes
4answers
551 views

Generate function of given arity in Haskell using type numbers

Assume I have encoded the natural numbers in Haskell types, and that I have a way of adding and subtracting from them: data Zero data Succ n -- ... I have seen various bits of code which create the ...