summaryrefslogtreecommitdiff
blob: f4d3257dab778470b4f57264d9a2aab9cb3eaf48 (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
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
	<maintainer type="project">
		<email>haskell@gentoo.org</email>
		<name>Gentoo Haskell</name>
	</maintainer>
	<longdescription>
		Some carefully crafted libraries make promises to their
		users beyond functionality and performance.
		
		Examples are: Fusion libraries promise intermediate data
		structures to be eliminated. Generic programming libraries promise
		that the generic implementation is identical to the
		hand-written one. Some libraries may promise allocation-free
		or branch-free code.
		
		Conventionally, the modus operandi in all these cases is
		that the library author manually inspects the (intermediate or
		final) code produced by the compiler. This is not only
		tedious, but makes it very likely that some change, either
		in the library itself or the surrounding eco-system,
		breaks the library's promised without anyone noticing.
		
		This package provides a disciplined way of specifying such
		properties, and have them checked by the compiler. This way,
		this checking can be part of the ususal development cycle
		and regressions caught early.
		
		See the documentation in &quot;Test.Inspection&quot; or the project
		webpage for more examples and more information.
	</longdescription>
</pkgmetadata>