text 0.11.0.4 → 0.11.0.5
raw patch · 4 files changed
+5/−5 lines, 4 filesdep ~basedep ~bytestring
Dependency ranges changed: base, bytestring
Files
- Data/Text.hs +1/−1
- Data/Text/Array.hs +2/−2
- Data/Text/Lazy.hs +1/−1
- text.cabal +1/−1
Data/Text.hs view
@@ -388,7 +388,7 @@ cons c t = unstream (S.cons (safe c) (stream t)) {-# INLINE cons #-} -infixr 5 cons+infixr 5 `cons` -- | /O(n)/ Adds a character to the end of a 'Text'. This copies the -- entire array in the process, unless fused. Subject to fusion.
Data/Text/Array.hs view
@@ -26,8 +26,8 @@ module Data.Text.Array ( -- * Types- Array- , MArray+ Array(aBA)+ , MArray(maBA) -- * Functions , copyM
Data/Text/Lazy.hs view
@@ -392,7 +392,7 @@ cons c t = Chunk (T.singleton c) t {-# INLINE [1] cons #-} -infixr 5 cons+infixr 5 `cons` {-# RULES "LAZY TEXT cons -> fused" [~1] forall c t.
text.cabal view
@@ -1,5 +1,5 @@ name: text-version: 0.11.0.4+version: 0.11.0.5 homepage: http://bitbucket.org/bos/text bug-reports: http://bitbucket.org/bos/text/issues synopsis: An efficient packed Unicode text type.