Extensible record

From HaskellWiki
Revision as of 22:14, 16 June 2006 by EndreyMark (talk | contribs) (→‎Related concepts: new section added, this refers to Dependent type, and a link to ``Why Dependent Types Matter'')
Jump to navigation Jump to search

Proposals, implementations can be found on the FirstClassLabels page of Haskell' Wiki.

Papers and libraries

Applications

Declarative database management

Such systems can achieve more type safety (compared to direct SQL handling).

HaskellDB

A problem where some concepts of extensible records could be useful is described in the HaskellDB project. More precisely, the problem is described in the paper downloadable from

HaskellDB uses its own extensible record system, but see also HaskellDB#Future.

CoddFish

CoddFish is another declarative, type safe database system. As for extensible record system, it uses HList --- a Haskell library for strongly typed heterogeneous collections.

Related concepts

Dependent type -- as an explanation for its relatedness here, see Why Dependent Types Matter written by Thorsten Altenkirch, Conor McBride, James McKinna -- or at least its Conclusions section (section 8, pages 18--19).