Dependent type
From Wikipedia, the free encyclopedia
In computer science and logic, a dependent type is a type which depends on a value. Dependent types play a central role in intuitionistic type theory and in the design of experimental functional programming languages like Dependent ML and Epigram.
An example is the type of n-tuples of real numbers, which we may denote as . This is a dependent type because the type depends on the value .
Contents |
[edit] Systems of the lambda cube
[edit] First order dependent type theory
The system λP of pure first order dependent types, corresponding to the logical framework LF, is obtained by generalising the function space type of the simply typed lambda calculus to the dependent product type.
Writing for n-tuples of real numbers, as above, stands for the type of functions which given a natural number n returns a tuple of real numbers of size n. The usual function space arises as a special case when the range type does not actually depend on the input, e.g. is the type of functions from natural numbers to the real numbers, written as in the simply typed lambda calculus.
[edit] Second order dependent type theory
The system λP2 of second order dependent types is obtained from λP by allowing quantification over type constructors. In this theory the dependent product operator subsumes both the operator of simply typed lambda calculus and the binder of System F.
[edit] Higher order dependently typed polymorphic lambda calculus
The higher order system λPω extends λP2 to all four forms of abstraction from the lambda cube: functions from terms to terms, types to types, terms to types and types to terms. The system corresponds to the Calculus of constructions.
[edit] Languages with dependent types
- Agda
- Aldor
- ATS
- C++ templates - type parameters can be values
- Cayenne
- Coq
- Dependent ML
- Epigram
- Mizar system
- NuPRL
- PVS
- Sage Programming Language
- Twelf
- Xanadu
[edit] See also
[edit] External links
- Why Dependent Types Matter T. Altenkirch, C. McBride, J. McKinna