Higher rank types are types containing type variables that are locally quantified. Type inference for such types is not decidable.
14
votes
2answers
193 views
How can eta-reduction of a well typed function result in a type error?
I was playing around with van Laarhoven lenses and ran into a problem where the type-checker rejects the eta-reduced form of a well-typed function:
{-# LANGUAGE RankNTypes #-}
import ...
1
vote
1answer
98 views
Checking if a partial function in scala is definied for a value with unknow type
I have the following trait (to get kind of rank 2 polymorphism click)
type Id[A] = A
trait ~>[F[_], G[_]] {
def apply[A](a: F[A]): G[A]
def isDefinedAt[A](a: A): Boolean}
And a function to ...
22
votes
2answers
420 views
Are there any advantages of using Rank2Types in favor of RankNTypes?
As far as I know, a decidable type checking algorithm exists (only) for rank-2 types. Does GHC use somehow this fact, and does it have any practical implications?
Is there also a notion of principal ...
8
votes
2answers
157 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 ...
1
vote
2answers
138 views
Encoding ExistentialQuantification with RankNTypes
I've read in a few places claims that equivalent functionality to ExistentialQuantification can be had using RankNTypes. Could someone provide an example of why this is or is not possible?
6
votes
2answers
256 views
How to express existential types using higher rank (rank-N) type polymorphism?
We're used to having universally quantified types for polymorphic functions. Existentially quantified types are used much less often. How can we express existentially quantified types using universal ...
1
vote
0answers
106 views
Signature for Generic Mutable Vector function
I'm trying to write a generic vector function that takes an immutable vector and returns an immutable vector, but operates on a (temporary) mutable vector. A simple example that demonstrates my ...
2
votes
1answer
57 views
Kind vs Rank in type theory
I'm having a hard time understanding Higher Kind vs Higher Rank types. Kind is pretty simple (thanks Haskell literature for that) and I used to think rank is like kind when talking about types but ...
0
votes
2answers
94 views
Ambiguous type variable using multi-parameter typeclass
I don't understand why Haskell can't figure out the type for line 8 in the following code. Doesn't the type signature of the expressMaybe function establish that the result type is the same as the ...
12
votes
1answer
431 views
What are these explicit “forall”s doing?
What is the purpose of the foralls in this code?
class Monad m where
(>>=) :: forall a b. m a -> (a -> m b) -> m b
(>>) :: forall a b. m a -> m b -> ...
39
votes
3answers
1k views
What is the purpose of Rank2Types?
I am not really proficient in Haskell, so it might be a very easy question.
What language limitation do Rank2Types solve?
Do not functions in Haskell already support polymorphic arguments?
4
votes
1answer
106 views
Requiring generic instances (for higher-kinded type constructors) in instance context
I'm trying to create a flexible representation for an inductive datatype (that describes a version of the lambda calculus with datatypes and pattern matching). The flexibility here should mean that it ...
4
votes
3answers
194 views
Existential type wrappers necessity
Turns out that it is surprisingly difficult to use existential/rank-n types correctly despite the very simple idea behind them.
Why are wrapping existential types into data types is necessary?
I ...
10
votes
4answers
384 views
Generic variant of bi f a b = (f a, f b)
Is there any type-safe way to write a function
bi f a b = (f a, f b)
such that it would be possible to use it like this:
x1 :: (Integer, Char)
x1 = bi head [2,3] "45"
x2 :: (Integer, Char)
x2 = ...
5
votes
1answer
156 views
Heterogeneous map
I need a map which can contain arbitrary values as long as their types are of the same typeclass. My first naive approach was something like this:
type HMap = forall a . MyClass a => M.Map Int a
...
15
votes
2answers
318 views
newtype with RankNTypes
If I want to declare a newtype such that type type of the value is constrained to have an instance for a type-class, it seems like I can do that with:
{-# LANGUAGE RankNTypes #-}
newtype ShowBox = ...
1
vote
1answer
168 views
Existentially quantified types example fails in ghc 7.2.2
According to Wikipedia, the following code should compile,
{-# LANGUAGE RankNTypes #-}
data T = MkT (exists a. Show a => a)
But, I'm not having any luck. ghci 7.2.2 complains with,
...
13
votes
2answers
408 views
Higher ranked and impredicative types
I want to implement the following stripPrefixBy function:
-- psuedo code signature
stripPrefixBy :: forall a. [forall b. a -> Maybe b] -> [a] -> Maybe [a]
stripPrefixBy [] xs = Just xs
...
21
votes
2answers
496 views
Use case for rank-3 (or higher) polymorphism?
I've seen a few use cases for rank-2 polymorphism (the most prominent example being the ST monad), but none for a higher rank than that. Does anyone know of such a use case?
11
votes
2answers
204 views
map runSTArray over a list of STArrays?
I have a function that creates recursively a flattened list of matrices from a tree that have to be mutable as their elements are updated often during their creation. So far I have come up with a ...
27
votes
1answer
2k views
STArray documentation for newbies and State/ST related questions
I have a hard time to understand STArray from the documentation and other howtos/discussion I've found through Google. I've got some more related questions below.
According to the documentation, ...
13
votes
2answers
761 views
Folding over a polymorphic list in Haskell
I have a collection of records spread across a number of types in a large Haskell application that reference each other. All of the types involved implement a common typeclass. The typeclass contains ...
2
votes
3answers
239 views
Weird error when using scoped type variables and the y combinator in haskell
So I'm playing around with the y-combinator and anonymous functions, and I ran into this weird error:
Couldn't match expected type `t0 -> t1 -> t2'
with actual type `forall b. b ...
7
votes
1answer
162 views
How exactly do type synonyms work?
How does it come, that the following type checks
{-# LANGUAGE RankNTypes #-}
module Main where
class Foo a where
type FunFoo = (Foo a) => a -> IO ()
data Bar = Bar {
funFoo :: FunFoo
}
...
5
votes
1answer
209 views
RankNTypes for instance declarations?
I've been playing around with RankNTypes recently and wonder if it is possible to use them
in instance declarations.
Here is a simple example using open datatypes
data (Expr a, Expr b) => Add a b ...
4
votes
3answers
412 views
List of existentially quantified values in Haskell
I'm wondering why this piece of code doesn't type-check:
{-# LANGUAGE ScopedTypeVariables, Rank2Types, RankNTypes #-}
{-# OPTIONS -fglasgow-exts #-}
module Main where
foo :: [forall a. a]
foo = [1]
...
11
votes
4answers
713 views
What uses have you found for higher-rank types in Haskell?
Higher rank types look like great fun. From the Haskell wikibook comes this example:
foo :: (forall a. a -> a) -> (Char,Bool)
foo f = (f 'c', f True)
Now we can evaluate foo id without the compiler ...