packages feed

text 0.11.0.2 → 0.11.0.3

raw patch · 3 files changed

+17/−8 lines, 3 files

Files

Data/Text/Internal.hs view
@@ -12,8 +12,13 @@ -- Stability   : experimental -- Portability : GHC ----- Semi-public internals.  Most users should not need to use this--- module.+-- A module containing private 'Text' internals. This exposes the+-- 'Text' representation and low level construction functions.+-- Modules which extend the 'Text' system may need to use this module.+--+-- You should not use this module unless you are determined to monkey+-- with the internals, as the functions here do just about nothing to+-- preserve data invariants.  You have been warned!  module Data.Text.Internal     (
Data/Text/Lazy/Internal.hs view
@@ -9,10 +9,14 @@ -- Stability   : experimental -- Portability : GHC -- --- A module containing semi-public 'Text' internals. This exposes the+-- A module containing private 'Text' internals. This exposes the -- 'Text' representation and low level construction functions. -- Modules which extend the 'Text' system may need to use this module.--- Regular users should not.+--+-- You should not use this module unless you are determined to monkey+-- with the internals, as the functions here do just about nothing to+-- preserve data invariants.  You have been warned!+ module Data.Text.Lazy.Internal     (       Text(..)
text.cabal view
@@ -1,5 +1,5 @@ name:           text-version:        0.11.0.2+version:        0.11.0.3 homepage:       http://bitbucket.org/bos/text bug-reports:    http://bitbucket.org/bos/text/issues synopsis:       An efficient packed Unicode text type.@@ -79,18 +79,20 @@ library   exposed-modules:     Data.Text+    Data.Text.Array     Data.Text.Encoding     Data.Text.Encoding.Error     Data.Text.Foreign     Data.Text.IO+    Data.Text.Internal     Data.Text.Lazy     Data.Text.Lazy.Builder     Data.Text.Lazy.Encoding     Data.Text.Lazy.IO+    Data.Text.Lazy.Internal     Data.Text.Lazy.Read     Data.Text.Read   other-modules:-    Data.Text.Array     Data.Text.Encoding.Fusion     Data.Text.Encoding.Fusion.Common     Data.Text.Encoding.Utf16@@ -102,10 +104,8 @@     Data.Text.Fusion.Internal     Data.Text.Fusion.Size     Data.Text.IO.Internal-    Data.Text.Internal     Data.Text.Lazy.Encoding.Fusion     Data.Text.Lazy.Fusion-    Data.Text.Lazy.Internal     Data.Text.Lazy.Search     Data.Text.Search     Data.Text.Unsafe