Dependent type
The concept of dependent types[edit]
General[edit]
- Wikipedia
- Dependent Types in Programming abstract in APPSEM'2000
- Do we need dependent types? by Daniel Fridlender and Mia Indrika, 2001.
Type theory[edit]
Simon Thompson: Type Theory and Functional Programming. Section 6.3 deals with dependent types, but because of the strong emphasis on Curry-Howard isomorphism and the connections between logic and programming, the book seemed cathartic for me even from its beginning.
Another interesting approach to Curry-Howard isomorphism and the concept of dependent type: Lecture 9. Semantics and pragmatics of text and dialogue dicsusses these concepts in the context of linguistics. Written by Arne Ranta, see also his online course and other linguistical materials on the Linguistics wikipage.
Illative combinatory logic[edit]
To see how Illative Combinatory logic deals with dependent types, see combinator G described in Systems of Illative Combinatory Logic complete for first-order propositional and predicate calculus by Henk Barendregt, Martin Bunder, Wil Dekkers. It seems to me that the dependent type construct Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle \forall x : S \Rightarrow T} of Epigram corresponds to Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle \mathbf G\;S\;(\lambda x . T)} in Illative Combinatory Logic. I think e.g. the followings should correspond to each other:
- Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle \mathrm{realNullvector} :\;\;\;\forall n: \mathrm{Nat} \Rightarrow \mathrm{RealVector}\;n}
- Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle \mathbf G\;\,\mathrm{Nat}\;\,\mathrm{RealVector}\;\,\mathrm{realNullvector}}
Dependently typed languages[edit]
Epigram[edit]
Epigram is a full dependently typed programming language, see especially
- Epigram Tutorial by Conor McBride
- and Why dependent types matter by Thorsten Altenkirch, Conor McBride and James McKinna).
Dependent types (of this language) also provide a not-forgetful concept of views (already mentioned in the Haskell Future of Haskell#Extensions of Haskell; the connection between these concepts is described in p. 32 of Epigram Tutorial (section 4.6 Patterns Forget; Matching Is Remembering).
See Epigram also as theorem prover.
Agda[edit]
Agda is a system for incrementally developing proofs and programs. Agda is also a functional language with dependent types. This language is similar to Epigram but has a more Haskell-like syntax.
People who are interested also in theorem proving may see the theorem provers page.
Idris[edit]
Idris is a general purpose pure functional programming language with dependent types, eager evaluation, and optional lazy evaluation via laziness annotations. It has a very Haskell-like syntax and is available on Hackage.
Idris is actively developed by Edwin Brady at the University of St. Andrews.
Cayenne[edit]
Cayenne is influenced also by constructive type theory. The compiler can be found at GitHub
Dependent types make it possible not to have a separate module language and a core language. This idea may concern Haskell too, see First-class module page.
Dependent types make it useful also as a theorem prover.
Dependent types in Haskell programming[edit]
Lightweight Dependent Typing[edit]
These pages describe a lightweight approach and its applications, e.g., statically safe head/tail functions and the elimination of array bound check (even in such complex algorithms as Knuth-Morris-Pratt string search). The page also briefly describes `singleton types' (Hayashi and Xi).
Library[edit]
Ivor is type theory based theorem proving library -- written by Edwin Brady (see also the author's homepage, there are a lot of materials concerning dependent type theory there).
Proposals[edit]
- Richard A. Eisenberg: Dependent Types in Haskell: Theory and Practice
- John Hughes:
Dependent Types in Haskell (some ideas)(404).
Simulating them[edit]
- Faking it: Simulating Dependent Types in Haskell, by Conor McBride
- SimulatingDependentTypes of HaWiki (Web Archive)
- The See also section of Type page contains links to many related idioms. Especially type arithmetic seems to me also a way yielding some tastes from dependent type theory.
- On the usefulness of such idioms in practice, see HaskellDB's pages
- updated page (see Papers subsection on Documentation)
- which presupposes reading also paper on the original page (see Documentation subpage, PostScript version)