blob: e8e45b95ba770577d8b4a547037b7b0b29a9237f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>haskell@gentoo.org</email>
<name>Gentoo Haskell</name>
</maintainer>
<longdescription>
A library to support the definition of generic functions.
Datatypes are viewed in a uniform, structured way:
the choice between constructors is represented using an n-ary
sum, and the arguments of each constructor are represented using
an n-ary product.
The module "Generics.SOP" is the main module of this library and contains
more detailed documentation.
Examples of using this library are provided by the following
packages:
* @<https://hackage.haskell.org/package/basic-sop basic-sop>@ basic examples,
* @<https://hackage.haskell.org/package/pretty-sop pretty-sop>@ generic pretty printing,
* @<https://hackage.haskell.org/package/lens-sop lens-sop>@ generically computed lenses,
* @<https://hackage.haskell.org/package/json-sop json-sop>@ generic JSON conversions.
A detailed description of the ideas behind this library is provided by
the paper:
* Edsko de Vries and Andres Löh.
<http://www.andres-loeh.de/TrueSumsOfProducts True Sums of Products>.
Workshop on Generic Programming (WGP) 2014.
</longdescription>
</pkgmetadata>
|