Extensible record: Difference between revisions
No edit summary |
(fix broken haskell prime wiki link) |
||
(13 intermediate revisions by 8 users not shown) | |||
Line 1: | Line 1: | ||
__TOC__ | __TOC__ | ||
Proposals, implementations can be found on the [ | Proposals, implementations can be found on the [https://web.archive.org/web/20190816233826/https://prime.haskell.org/wiki/FirstClassLabels FirstClassLabels] page of Haskell' Wiki. | ||
== Papers and libraries == | == Papers and libraries == | ||
* [ | * [[CTRex]] Extensible records as a library using closed type families and type literals. | ||
* [https://www.researchgate.net/profile/Keean_Schupke/publication/234806693_Strongly_typed_heterogeneous_collections/links/02e7e51e92fd6109e3000000.pdf HList – a Haskell library for strongly typed heterogeneous collections] includes also extensible records. Its relatedness to database programming is described in the articles, see also its [http://hackage.haskell.org/trac/summer-of-code/ticket/33 possible] relatedness to [[Libraries and tools/Database interfaces/HaskellDB|HaskellDB]] project. | |||
* Daan Leijen: [http://www.cs.uu.nl/~daan/pubs.html#fclabels First-class labels for extensible rows]. See also the description of the Haskell-like language [http://www.cs.uu.nl/~daan/morrow/ Morrow], it is based on the concepts of the article. And [http://www.cs.uu.nl/~daan/pubs.html#scopedlabels Extensible records with scoped labels]: "We describe a natural approach to typing polymorphic and extensible records that is simple, easy to use in practice, and straightforward to implement." | * Daan Leijen: [http://www.cs.uu.nl/~daan/pubs.html#fclabels First-class labels for extensible rows]. See also the description of the Haskell-like language [http://www.cs.uu.nl/~daan/morrow/ Morrow], it is based on the concepts of the article. And [http://www.cs.uu.nl/~daan/pubs.html#scopedlabels Extensible records with scoped labels]: "We describe a natural approach to typing polymorphic and extensible records that is simple, easy to use in practice, and straightforward to implement." | ||
* Simon Peyton Jones and Greg Morrisett: [http://research.microsoft.com/ | * Simon Peyton Jones and Greg Morrisett: [http://web.archive.org/web/20160322051608/http://research.microsoft.com/en-us/um/people/simonpj/Haskell/records.html A proposal for records in Haskell] | ||
* Mark Jones and Simon Peyton Jones: [ | * Mark Jones and Simon Peyton Jones: [https://www.microsoft.com/en-us/research/publication/lightweight-extensible-records-for-haskell/ Lightweight Extensible Records for Haskell] | ||
* Mark P. Jones: [http://www.cs.sfu.ca/CourseCentral/SW/Haskell/hugs/TREX A prototype implementation of extensible records for Hugs] | * Mark P. Jones: [http://www.cs.sfu.ca/CourseCentral/SW/Haskell/hugs/TREX A prototype implementation of extensible records for Hugs] | ||
* Didier Remy's [http://www.cs.uu.nl/wiki/Uhc/ErikKnoop#Typing_record_concatenation_for Typing record concatenation for free] on Erik Knoop's page | * Didier Remy's [http://www.cs.uu.nl/wiki/Uhc/ErikKnoop#Typing_record_concatenation_for Typing record concatenation for free] on Erik Knoop's page | ||
* Benedict R. Gaster, Mark P. Jones: [http:// | * Benedict R. Gaster, Mark P. Jones: [http://web.cecs.pdx.edu/~mpj/pubs/polyrec.html A Polymorphic Type System for Extensible Records and Variants] | ||
* [http://www.comp.nus.edu.sg/~sulzmann/chameleon/ Chameleon], a Haskell-like language, see its [http://www.comp.nus.edu.sg/~sulzmann/chameleon/download/haskell.html#record records] [dead link as of 2011-09-15] | * [http://www.comp.nus.edu.sg/~sulzmann/chameleon/ Chameleon], a Haskell-like language, see its [http://www.comp.nus.edu.sg/~sulzmann/chameleon/download/haskell.html#record records] [dead link as of 2011-09-15] | ||
* [[Grapefruit]] contains the package grapefruit-records which implements a record system in Haskell with GHC extensions. This record system allows field selection and dropping of fields using pattern matching. It also supports defaulting. | * [[Grapefruit]] contains the package grapefruit-records which implements a record system in Haskell with GHC extensions. This record system allows field selection and dropping of fields using pattern matching. It also supports defaulting. | ||
* [http://www. | * [http://www.ioc.ee/~wolfgang/research/ppdp-2010-paper.pdf Generic Record Combinators with Static Type Checking] describes a record system with several novel features, which is provided by the [http://hackage.haskell.org/package/records records package]. It is derived from the record system of [[Grapefruit]]. | ||
* | |||
=== Libraries on hackage === | |||
* [http://hackage.haskell.org/package/extensible-data extensible-data] | |||
* [http://hackage.haskell.org/package/has has] | |||
* [http://hackage.haskell.org/package/HList HList] | |||
* [http://hackage.haskell.org/package/named-records named-records] | |||
* [http://hackage.haskell.org/package/records records] / [http://hackage.haskell.org/package/grapefruit-records grapefruit-records] | |||
* [http://hackage.haskell.org/package/vinyl vinyl] | |||
== Applications == | == Applications == | ||
Line 45: | Line 54: | ||
== Related concepts == | == Related concepts == | ||
[[Dependent type]] -- as an explanation for its relatedness here, see [http://www. | [[Dependent type]] -- as an explanation for its relatedness here, see [http://www.cs.nott.ac.uk/~psztxa/publ/ydtm.pdf Why Dependent Types Matter] written by Thorsten Altenkirch, Conor McBride, James McKinna -- or see at least its ''Conclusions'' section (section 8, pages 18--19). | ||
[[Type arithmetic]] seems to me also a way yielding some tastes from [[dependent type]] theory. | [[Type arithmetic]] seems to me also a way yielding some tastes from [[dependent type]] theory. |
Latest revision as of 05:26, 10 December 2020
Proposals, implementations can be found on the FirstClassLabels page of Haskell' Wiki.
Papers and libraries
- CTRex Extensible records as a library using closed type families and type literals.
- HList – a Haskell library for strongly typed heterogeneous collections includes also extensible records. Its relatedness to database programming is described in the articles, see also its possible relatedness to HaskellDB project.
- Daan Leijen: First-class labels for extensible rows. See also the description of the Haskell-like language Morrow, it is based on the concepts of the article. And Extensible records with scoped labels: "We describe a natural approach to typing polymorphic and extensible records that is simple, easy to use in practice, and straightforward to implement."
- Simon Peyton Jones and Greg Morrisett: A proposal for records in Haskell
- Mark Jones and Simon Peyton Jones: Lightweight Extensible Records for Haskell
- Mark P. Jones: A prototype implementation of extensible records for Hugs
- Didier Remy's Typing record concatenation for free on Erik Knoop's page
- Benedict R. Gaster, Mark P. Jones: A Polymorphic Type System for Extensible Records and Variants
- Chameleon, a Haskell-like language, see its records [dead link as of 2011-09-15]
- Grapefruit contains the package grapefruit-records which implements a record system in Haskell with GHC extensions. This record system allows field selection and dropping of fields using pattern matching. It also supports defaulting.
- Generic Record Combinators with Static Type Checking describes a record system with several novel features, which is provided by the records package. It is derived from the record system of Grapefruit.
Libraries on hackage
Applications
Declarative database management
Such systems can achieve more type safety (compared to direct SQL handling). They usually formulate a relational algebra concept in a declarative language.
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
- Chalmers version of HaskellDB (see Papers subsection on Documentation)
- which presupposes reading also paper on the Daan Leijen's original HaskellDB page (see Documentation subpage, PostScript version)
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.
Functional Reactive Programming
FRP often makes it necessary to deal with very large tuples as arrow inputs and outputs. For example, a GUI component would receive the behavior of all its writeable properties as its input. Extensible records can therefore make FRP more usable, especially if they provide defaulting.
Grapefruit
Grapefruit uses extensible records which support pattern matching and defaulting for functional reactive GUI programming.
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 see at least its Conclusions section (section 8, pages 18--19).
Type arithmetic seems to me also a way yielding some tastes from dependent type theory.
Relational algebra implementations usually use extensible records.