origami

Version 0.0.6 revision 0 uploaded by nedervold.

Package meta

Synopsis
An un-SYB framework for transforming heterogenous data through folds
Description

The Origami package consists of a coding pattern for transforming heterogenously typed data and Template Haskell macros to support the pattern. It operates in the same problem space as SYB, but generates the boilerplate for the user.

In the pattern, we focus on a specific set of types, the fold family. For each constructor of each of those types, the user will define a function to "replace" the constructor when folding.

These functions are collected together into a single record. (Its declaration is generated for the user.) Collecting the functions together forces the typing of all the functions to remain consistent and facilitates code reuse.

For each datatype, a fold function is automatically generated that applies the fold record to values of that datatype. It decomposes the value into parts according to its constructor, recursively applies the fold to the parts, then puts them back together using the replacement constructor function from the record.

As with SYB, Origami lets the user think on a higher-level of abstraction about data transformation and relieves her from the need to write boilerplate.

See the website for more information and examples.

Author
Eric Nedervold<nedervoldsoftware@gmail.com>
Bug reports
http://github.com/nedervold/origami/issues
Category
Data
Copyright
(c) 2015 Eric Nedervold
Homepage
http://github.com/nedervold/origami
Maintainer
Eric Nedervold<nedervoldsoftware@gmail.com>
Package URL
n/a
Stability
alpha

Components