/usr/share/doc/libghc-text-doc/html/index.html is in libghc-text-doc 0.11.3.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>text-0.11.3.1: An efficient packed Unicode text type.</title><link href="ocean.css" rel="stylesheet" type="text/css" title="Ocean" /><script src="haddock-util.js" type="text/javascript"></script><script type="text/javascript">//<![CDATA[
window.onload = function () {pageLoad();};
//]]>
</script></head><body><div id="package-header"><ul class="links" id="page-menu"><li><a href="index.html">Contents</a></li><li><a href="doc-index.html">Index</a></li></ul><p class="caption">text-0.11.3.1: An efficient packed Unicode text type.</p></div><div id="content"><div id="description"><h1>text-0.11.3.1: An efficient packed Unicode text type.</h1><div class="doc"><p>An efficient packed, immutable Unicode text type (both strict and
lazy), with a powerful loop fusion optimization framework.
</p><p>The <code>Text</code> type represents Unicode character strings, in a time and
space-efficient manner. This package provides text processing
capabilities that are optimized for performance critical use, both
in terms of large data quantities and high speed.
</p><p>The <code>Text</code> type provides character-encoding, type-safe case
conversion via whole-string case conversion functions. It also
provides a range of functions for converting <code>Text</code> values to and from
<code>ByteStrings</code>, using several standard encodings.
</p><p>Efficient locale-sensitive support for text IO is also supported.
</p><p>These modules are intended to be imported qualified, to avoid name
clashes with Prelude functions, e.g.
</p><pre> import qualified Data.Text as T
</pre><p>To use an extended and very rich family of functions for working
with Unicode text (including normalization, regular expressions,
non-standard encodings, text breaking, and locales), see
the <code>text-icu</code> package:
<a href="http://hackage.haskell.org/package/text-icu">http://hackage.haskell.org/package/text-icu</a>
</p><p>—— RELEASE NOTES ——
</p><p>Changes in 0.11.2.0:
</p><ul><li> String literals are now converted directly from the format in
which GHC stores them into <code>Text</code>, without an intermediate
transformation through <code>String</code>, and without inlining of
conversion code at each site where a string literal is declared.
</li></ul></div></div><div id="module-list"><p class="caption">Modules</p><ul><li><span id="control.n.1" class="module collapser" onclick="toggleSection('n.1')">Data</span><ul id="section.n.1" class="show"><li><span class="module"><span id="control.n.1.1" class="collapser" onclick="toggleSection('n.1.1')"> </span><a href="Data-Text.html">Data.Text</a></span><ul id="section.n.1.1" class="show"><li><span class="module"><a href="Data-Text-Array.html">Data.Text.Array</a></span></li><li><span class="module"><span id="control.n.1.1.2" class="collapser" onclick="toggleSection('n.1.1.2')"> </span><a href="Data-Text-Encoding.html">Data.Text.Encoding</a></span><ul id="section.n.1.1.2" class="show"><li><span class="module"><a href="Data-Text-Encoding-Error.html">Data.Text.Encoding.Error</a></span></li></ul></li><li><span class="module"><a href="Data-Text-Foreign.html">Data.Text.Foreign</a></span></li><li><span class="module"><a href="Data-Text-IO.html">Data.Text.IO</a></span></li><li><span class="module"><a href="Data-Text-Internal.html">Data.Text.Internal</a></span></li><li><span class="module"><span id="control.n.1.1.6" class="collapser" onclick="toggleSection('n.1.1.6')"> </span><a href="Data-Text-Lazy.html">Data.Text.Lazy</a></span><ul id="section.n.1.1.6" class="show"><li><span class="module"><span id="control.n.1.1.6.1" class="collapser" onclick="toggleSection('n.1.1.6.1')"> </span><a href="Data-Text-Lazy-Builder.html">Data.Text.Lazy.Builder</a></span><ul id="section.n.1.1.6.1" class="show"><li><span class="module"><a href="Data-Text-Lazy-Builder-Int.html">Data.Text.Lazy.Builder.Int</a></span></li><li><span class="module"><a href="Data-Text-Lazy-Builder-RealFloat.html">Data.Text.Lazy.Builder.RealFloat</a></span></li></ul></li><li><span class="module"><a href="Data-Text-Lazy-Encoding.html">Data.Text.Lazy.Encoding</a></span></li><li><span class="module"><a href="Data-Text-Lazy-IO.html">Data.Text.Lazy.IO</a></span></li><li><span class="module"><a href="Data-Text-Lazy-Internal.html">Data.Text.Lazy.Internal</a></span></li><li><span class="module"><a href="Data-Text-Lazy-Read.html">Data.Text.Lazy.Read</a></span></li></ul></li><li><span class="module"><a href="Data-Text-Read.html">Data.Text.Read</a></span></li><li><span class="module"><a href="Data-Text-Unsafe.html">Data.Text.Unsafe</a></span></li></ul></li></ul></li></ul></div></div><div id="footer"><p>Produced by <a href="http://www.haskell.org/haddock/">Haddock</a> version 2.13.2</p></div></body></html>
|