text: An efficient packed Unicode text type

[ bsd2, data, library, text ] [ Propose Tags ]

An efficient packed Unicode text type.


[Skip to Readme]

Flags

Automatic Flags
NameDescriptionDefault
developer

operate in developer mode

Disabled

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

Downloads

Note: This package has metadata revisions in the cabal description newer than included in the tarball. To unpack the package including the revisions, use 'cabal get'.

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.5, 0.6, 0.7, 0.7.0.1, 0.7.1.0, 0.7.2.1, 0.8.0.0, 0.8.1.0, 0.9.0.0, 0.9.0.1, 0.9.1.0, 0.10.0.0, 0.10.0.1, 0.10.0.2, 0.11.0.0, 0.11.0.1, 0.11.0.2, 0.11.0.3, 0.11.0.4, 0.11.0.5, 0.11.0.6, 0.11.0.7, 0.11.0.8, 0.11.1.0, 0.11.1.1, 0.11.1.2, 0.11.1.3, 0.11.1.5, 0.11.1.6, 0.11.1.7, 0.11.1.8, 0.11.1.9, 0.11.1.10, 0.11.1.11, 0.11.1.12, 0.11.1.13, 0.11.2.0, 0.11.2.1, 0.11.2.2, 0.11.2.3, 0.11.3.0, 0.11.3.1, 1.0.0.0, 1.0.0.1, 1.1.0.0, 1.1.0.1, 1.1.1.0, 1.1.1.1, 1.1.1.2, 1.1.1.3, 1.1.1.4, 1.2.0.0, 1.2.0.2, 1.2.0.3, 1.2.0.4, 1.2.0.5, 1.2.0.6, 1.2.1.0, 1.2.1.1, 1.2.1.2, 1.2.1.3, 1.2.2.0, 1.2.2.1, 1.2.2.2, 1.2.3.0, 1.2.3.1, 1.2.3.2, 1.2.4.0, 1.2.4.1, 1.2.5.0, 2.0, 2.0.1, 2.0.2, 2.1, 2.1.1
Dependencies base (<4.3), bytestring (>=0.9 && <1.0), deepseq (>=1.1.0.0 && <1.4), extensible-exceptions, ghc-prim [details]
License BSD-3-Clause
Copyright 2008-2009 Tom Harper, 2009-2010 Bryan O'Sullivan
Author Tom Harper <rtharper@aftereternity.co.uk>
Maintainer Bryan O'Sullivan <bos@serpentine.com> Tom Harper <rtharper@aftereternity.co.uk> Duncan Coutts <duncan@haskell.org>
Revised Revision 3 made by HerbertValerioRiedel at 2015-01-15T16:55:19Z
Category Data, Text
Uploaded by BryanOSullivan at 2010-07-02T20:23:33Z
Distributions Arch:1.2.5.0, Fedora:2.0.2, FreeBSD:1.2.1.3
Reverse Dependencies 5431 direct, 9198 indirect [details]
Downloads 615189 total (834 in the last 30 days)
Rating 2.75 (votes: 25) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs uploaded by user
Build status unknown [no reports yet]

Readme for text-0.7.2.1

[back to package description]
Text: Fast, packed Unicode strings, using stream fusion
-------------------------------------------------------

This package provides the Data.Text library, a library for the space-
and time-efficient manipulation of Unicode text in Haskell.


Normalization, conversion, and collation, oh my!
------------------------------------------------

This library intentionally provides a simple API based on the Haskell
prelude's list manipulation functions.  For more complicated
real-world tasks, such as Unicode normalization, conversion to and
from a larger variety of encodings, and collation, use the text-icu
package:

  http://hackage.haskell.org/cgi-bin/hackage-scripts/package/text-icu

That library uses the well-respected and liberally licensed ICU
library to provide these facilities.


Source code
-----------

darcs get http://code.haskell.org/text


Reporting bugs, asking for enhancements
---------------------------------------

http://trac.haskell.org/text/


Authors
-------

The base code for this library was originally written by Tom Harper,
based on the stream fusion framework developed by Roman Leshchinskiy,
Duncan Coutts, and Don Stewart.

The core library was fleshed out, debugged, and tested by Bryan
O'Sullivan, and he is the current maintainer.