Extensible record: Difference between revisions

From HaskellWiki
(Add a link to the [http://www.cs.uu.nl/~daan/morrow/ Morrow] language, whith interpeter, having extensible records)
m (Morrow interpreter seems to be unavailable for download)
Line 6: Line 6:


See also
See also
* Daan Leijen: [http://www.cs.uu.nl/~daan/pubs.html#fclabels First-class labels for extensible rows]. To study the concepts of the article by experimentation, see the implemented Haskell-like language: [http://www.cs.uu.nl/~daan/morrow/ Morrow]
* 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.
* Simon Peyton Jones and Greg Morrisett: [http://research.microsoft.com/~simonpj/Haskell/records.html  A proposal for records in Haskell]
* Simon Peyton Jones and Greg Morrisett: [http://research.microsoft.com/~simonpj/Haskell/records.html  A proposal for records in Haskell]
* Mark Jones and Simon Peyton Jones: [http://research.microsoft.com/~simonpj/Papers/records.htm Lightweight Extensible Records for Haskell]
* Mark Jones and Simon Peyton Jones: [http://research.microsoft.com/~simonpj/Papers/records.htm Lightweight Extensible Records for Haskell]

Revision as of 21:42, 8 March 2006

A problem where some concepts of extensible records could be useful is described in the HaskellDB project:

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

See also