blob: a6729c09cb4bf9b3249e37e72ae60c78e8812e96 (
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
38
39
40
41
42
43
44
45
46
47
|
<?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>
@text-show@ offers a replacement for the @Show@ typeclass intended
for use with @Text@ instead of @String@s. This package was created
in the spirit of
@<http://hackage.haskell.org/package/bytestring-show bytestring-show>@.
At the moment, @text-show@ provides instances for most data
types in the @<http://hackage.haskell.org/package/array array>@,
@<http://hackage.haskell.org/package/base base>@,
@<http://hackage.haskell.org/package/bytestring bytestring>@, and
@<http://hackage.haskell.org/package/text text>@ packages.
Therefore, much of the source code for @text-show@ consists of
borrowed code from those packages in order to ensure that the
behaviors of @Show@ and @TextShow@ coincide.
For most uses, simply importing "TextShow"
will suffice:
@
module Main where
import TextShow
main :: IO ()
main = printT (Just \"Hello, World!\")
@
If you desire it, there are also monomorphic versions of the @showb@
function available in the submodules of "TextShow". See the
<https://github.com/RyanGlScott/text-show/wiki/Naming-conventions naming conventions>
page for more information.
Support for automatically deriving @TextShow@ instances can be found
in the "TextShow.TH" and "TextShow.Generic" modules. If you don't
know which one to use, use "TextShow.TH".
</longdescription>
<upstream>
<remote-id type="github">RyanGlScott/text-show</remote-id>
</upstream>
</pkgmetadata>
|