compdata: Compositional Data Types

[ bsd3, generics, library ] [ Propose Tags ]

Based on Wouter Swierstra's Functional Pearl Data types a la carte (Journal of Functional Programming, 18(4):423-436, 2008, http://dx.doi.org/10.1017/S0956796808006758), this package provides a framework for defining recursive data types in a compositional manner. The fundamental idea of compositional data types (Workshop on Generic Programming, 83-94, 2011, http://dx.doi.org/10.1145/2036918.2036930) is to separate the signature of a data type from the fixed point construction that produces its recursive structure. By allowing to compose and decompose signatures, compositional data types enable to combine data types in a flexible way. The key point of Wouter Swierstra's original work is to define functions on compositional data types in a compositional manner as well by leveraging Haskell's type class machinery.

Building on that foundation, this library provides additional extensions and (run-time) optimisations which make compositional data types usable for practical implementations. In particular, it provides an excellent framework for manipulating and analysing abstract syntax trees in a type-safe manner. Thus, it is perfectly suited for programming language implementations, especially, in an environment consisting of a family of tightly interwoven domain-specific languages.

In concrete terms, this package provides the following features:

  • Compositional data types in the style of Wouter Swierstra's Functional Pearl Data types a la carte.

  • Modular definition of functions on compositional data types through catamorphisms and anamorphisms as well as more structured recursion schemes such as primitive recursion and co-recursion, and course-of-value iteration and co-iteration.

  • Support for monadic computations via monadic variants of all recursion schemes.

  • Support of a succinct programming style over compositional data types via generic programming combinators that allow various forms of generic transformations and generic queries.

  • Generalisation of compositional data types (terms) to compositional data types "with holes" (contexts). This allows flexible reuse of a wide variety of catamorphisms (called term homomorphisms) as well as an efficient composition of them.

  • Operations on signatures, for example, to add and remove annotations of abstract syntax trees. This includes combinators to propagate annotations fully automatically through certain term homomorphisms.

  • Optimisation of the implementation of recursion schemes. This includes short-cut fusion style optimisation rules which yield a performance boost of up to factor six.

  • Automatic derivation of instances of all relevant type classes for using compositional data types via Template Haskell. This includes instances of Prelude.Eq, Prelude.Ord and Prelude.Show that are derived via instances for functorial variants of them. Additionally, also smart constructors, which allow to easily construct inhabitants of compositional data types, are automatically generated.

  • Mutually recursive data types and generalised algebraic data types (GADTs). All of the above is also lifted to families of mutually recursive data types and (more generally) GADTs. This extension resides in the module Data.Comp.Multi.

  • Parametric compositional data types (Workshop on Mathematically Structured Functional Programming, 3-24, 2012, http://dx.doi.org/10.4204/EPTCS.76.3). All of the above is also lifted to parametric data types, which enables support for parametric higher-order abstract syntax (PHOAS). This extension resides in the module Data.Comp.Param.

  • Generalised parametric compositional data types. All of the above is also lifted to generalised parametric data types, which enables support for typed parametric higher-order abstract syntax (PHOAS). This extension resides in the module Data.Comp.MultiParam.

Examples of using (generalised) (parametric) compositional data types are bundled with the package in the libray examples.

Flags

Automatic Flags
NameDescriptionDefault
benchmark

Build benchmark executable.

Disabled

Use -f <flag> to enable a flag, or -f -<flag> to disable that flag. More info

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.1, 0.2, 0.3, 0.4, 0.4.1, 0.5, 0.5.1, 0.5.2, 0.5.3, 0.6, 0.6.1, 0.6.1.1, 0.6.1.2, 0.6.1.3, 0.6.1.4, 0.7, 0.7.0.1, 0.7.0.2, 0.8, 0.8.0.1, 0.8.1.0, 0.8.1.1, 0.8.1.2, 0.8.1.3, 0.9, 0.10, 0.10.1, 0.11, 0.12, 0.12.1, 0.13.0, 0.13.1
Dependencies base (>=4 && <5), containers, criterion, deepseq, derive, mtl, QuickCheck (>=2), random, template-haskell, th-expand-syns, transformers, uniplate [details]
License BSD-3-Clause
Author Patrick Bahr, Tom Hvitved
Maintainer paba@diku.dk
Category Generics
Source repo head: hg clone https://bitbucket.org/paba/compdata
Uploaded by PatrickBahr at 2012-04-24T16:28:12Z
Distributions LTSHaskell:0.13.1, NixOS:0.13.1, Stackage:0.13.1
Reverse Dependencies 11 direct, 4 indirect [details]
Executables benchmark
Downloads 26196 total (51 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs uploaded by user
Build status unknown [no reports yet]