Dependent types are types that depend on values. Very few languages support them - examples include Agda and Coq.
33
votes
2answers
339 views
Datatype promotion for dependently challenged
After reading through the ghc 7.4. pre-release notes and the Giving Haskell a Promotion paper, I'm still confused on what you actually do with promoted types. For example, the GHC manual gives the ...
11
votes
3answers
277 views
How to make a type with restrictions
For example I want to make a type MyType of integer triples. But not just Cartesian product of three Integer, I want the type to represent all (x, y, z) such that x + y + z = 5
How do I do that? ...
8
votes
1answer
154 views
Dependently typed queue in haskell
I tried to answer my own question about examples using the PolyKinds extension in GHC, and came up with a more concrete problem. I'm trying to model a queue that is build out of two lists, the ...
7
votes
2answers
356 views
Dependent types for structured data validation
First of all, I don’t really know what’s wrong with dependent types and why we don’t see them implemented in existing languages for practical programming, instead of inventing all kind of tricks ...
6
votes
4answers
95 views
Scala type inference fails to note that these types are identical, whatever they are
I have a design pattern here where there is an object generator (MorselGenerator and its children), any instance of which always generates the same exact type of object (Morsels and its children), but ...
5
votes
2answers
124 views
Pattern matching not specialising types
I'm playing around in Coq, trying to create a sorted list.
I just wanted a function that takes a list [1,2,3,2,4] and would return something like Sorted[1,2,3,4] - i.e. taking out the bad parts, but ...
5
votes
1answer
193 views
Dependently typed language best suited to “real world” programming?
Which dependently typed programming languages could be used for real world application development?
These are some points, that I think are important:
documentation
example programs
a standard ...
4
votes
2answers
94 views
In Scala is it possible to retrieve the `val` referrenced by a singleton type?
I'm trying to get a minimal form of dependent types in Scala. If I have
class A[T <: Int]
val x: Int = 7
I can
val a = new A[x.type]
Now is it possible to recover x from its singleton ...
4
votes
2answers
556 views
How to emulate a dependent type in Scala
I'm trying to define a generic residue class ring in Scala. A residue class ring is defined by some base ring (e.g. the integers) and a modulus (e.g. two), which is a value from the base ring. Both ...
1
vote
2answers
38 views
How can i simplify this type?
liftM2 {A B R : Set} {m} {x : Monad m} (f : A -> B -> R) (ma : m A) (mb : m B) : (m R)
Are there any tricks to reducing this type? I have a redundant x in there.
Monad is a typeclass: (Set ...