Dependent types are types that depend on values. Very few languages support them - examples include Agda, Coq, Epigram, Scala (by path-dependent-types, a close variant) and Idris which aspires to produce system-level quality native code.

learn more… | top users | synonyms

4
votes
1answer
90 views

Dependently typed 'ZipVector' Applicatives

I've made myself a "ZipVector" style Applicative on finite Vectors which uses a sum type to glue finite vectors to Units which model "infinite" vectors. data ZipVector a = Unit a | ZipVector (Vector ...
14
votes
1answer
322 views

Singleton types in Haskell

As part of doing a survey on various dependently typed formalization techniques, I have ran across a paper advocating the use of singleton types (types with one inhabitant) as a way of introducing ...
4
votes
2answers
79 views

How to account for all cases of an enum on the right-hand side of a pattern match

Exhaustive pattern matching is great, but it only appears to work on the left-hand side of the case (=>) operator. I am curious if there is a way that a person can verify that the output of a ...
8
votes
1answer
193 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 ...
5
votes
2answers
262 views

Add Type Level Natural Numbers

I assume, that it is not possible to just add two type level natural numbers in haskell. Is this true? Suppose the natural numbers are defined like so: class HNat a data HZero instance HNat HZero ...
1
vote
1answer
37 views

Promoting free variables in type terms to implicit function arguments

In order for my question to be meaningful, I must provide some background. I think it would be useful to have a dependently typed language that can infer the existence and type of an argument a for ...
4
votes
1answer
61 views

Can't prove simple facts about functions defined with Program Fixpoint

Before, I was able to prove forall nat1: Nat, Trim nat1 -> Trim (pred nat1) for the following definition of pred. Fixpoint pred (nat1: Nat): Nat := match nat1 with | Empt => Empt | Fill ...
1
vote
1answer
46 views

Can't use inversion on inductive predicate

I'm stuck on a simple proof about an inductive predicate. I have to prove that the natural 0 is not positive, where a natural is a list of bits, and 0 is any list with only bits that are 0s. H1: pos ...
4
votes
2answers
234 views

How can I get the length of dependently typed interval?

Say I have a data type data Interval :: Nat -> Nat -> * where Go :: Interval m n -> Interval m (S n) Empty :: SNat n -> Interval n n These are half-(right-)open intervals. Nat are ...
0
votes
1answer
59 views

Rewriting dependent functions

I'm trying to define the predecessor function for binary natural numbers (lists of bits). I want to restrict the input of my function to numbers that are trimmed (don't have leading zeros) and that ...
6
votes
1answer
100 views

Using dependant types to provide a compile type proofe that some integer is a valid row-id in database?

In my never-ending wonder in dependent type land a strange idea came into my head. I do a lot of data base programming and it would be nice if I could get rid of all those sanity-checking and ...
25
votes
2answers
1k views

Where to start with dependent type programming?

There is an Idris tutorial, an Agda tutorial and many other tutorial style papers and introductory material with never ending references to things yet to learn. I'm kind of crawling in the middle of ...
4
votes
1answer
130 views

Implicit arguments and applying a function to the tail-part of fixed-size-vectors

I wrote an Agda-function applyPrefix to apply a fixed-size-vector-function to the initial part of a longer vector where the vector-sizes m, n and k may stay implicit. Here's the definition together ...
6
votes
2answers
171 views

How to index an “element” type by a “source container” value?

So I have a situation very similar to this (much simplified) code: import Data.Maybe import Data.List data Container a = Container [a] -- Assumption: an Element can only obtained from a Container. ...
0
votes
0answers
32 views

Are dependent-types any useful in dealing with parallel processing and concurrency?

Dependent types look really interesting and fashionable (and difficult by the way). I have heard about some (to me) magic paper that describes resource management in type level which is very ...
7
votes
2answers
224 views

ghc-7.6 class instances for dependent types

Heterogeneous lists are one of the examples given for the new dependent type facility of ghc 7.6: data HList :: [*] -> * where HNil :: HList '[] HCons:: a -> HList t -> HList (a ': t) ...
5
votes
1answer
189 views

Implicit length arguments in fixed-length-vector-functions in Agda

I wrote an Agda-function prefixApp which applies a Vector-Function to a prefix of a vector: split : {A : Set}{m n : Nat} -> Vec A (n + m) -> (Vec A n) * (Vec A m) split {_} {_} {zero} xs ...
51
votes
4answers
3k views

Why not be dependently typed?

I have seen several sources echo the opinion that "Haskell is gradually becoming a dependently-typed language". The implication seems to be that with more and more language extensions, Haskell is ...
9
votes
1answer
341 views

Agda Type-Checking and Commutativity / Associativity of +

Since the _+_-Operation for Nat is usually defined recursively in the first argument, its obviously non-trivial for the type-checker to know that i + 0 == i. However, I frequently run into this issue ...
27
votes
2answers
2k views

Any reason why scala does not explicitly support dependent types?

There are path dependent types and I think it is possible to express almost all the features of such languages as Epigram or Agda in Scala, but I'm wondering why Scala does not support this more ...
9
votes
2answers
346 views

Agda: parsing nested lists

I am trying to parse nested lists in Agda. I searched on google and the closest I have found is parsing addressed in Haskell, but usually libraries like "parsec" are used that are not available in ...
14
votes
3answers
428 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
247 views

Agda: my code doesn't type check (how to get implicit arguments right?)

"checkSimple" gets u, an element of the universe U, and checks if (nat 1) can be converted to a agda type given u. The result of the conversion is returned. Now I try to write a console program and ...
2
votes
3answers
316 views

Agda: parse a string with numbers

I am trying to parse a string with natural numbers in Agda. e.g., stringListToℕ "1,2,3" The result should be: Just (1 ∷ 2 ∷ 3 ∷ []) My current code is not quite right or by any means nice, but ...
3
votes
3answers
298 views

How to use dependent pairs

Suppose I have a function (it really does what the name says): filter : ∀ {A n} → (A → Bool) → Vec A n → ∃ (λ m → Vec A m) Now, I'd like to somehow work with the dependent pair I return. I wrote ...
2
votes
2answers
70 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 ...
6
votes
4answers
144 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 ...
8
votes
1answer
231 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 ...
34
votes
2answers
461 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 ...
15
votes
3answers
715 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
2answers
673 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 ...
4
votes
2answers
114 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 ...
5
votes
2answers
319 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 ...
7
votes
3answers
502 views

Dependently typed language best suited to “real world” programming? [closed]

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 ...
6
votes
2answers
950 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 ...