streaming-bytestring 0.1.0.8 → 0.1.1.0
raw patch · 3 files changed
+5/−5 lines, 3 filesdep ~streaming
Dependency ranges changed: streaming
Files
- Data/ByteString/Streaming/Char8.hs +2/−2
- LICENSE +1/−1
- streaming-bytestring.cabal +2/−2
Data/ByteString/Streaming/Char8.hs view
@@ -508,7 +508,7 @@ -- | unlinesIndividual :: Monad m => Stream (Of B.ByteString) m r -> ByteString m r -unlinesIndividual bss = R.concat $ for bss (\bs -> layer $ R.chunk bs >> singleton '\n')+unlinesIndividual bss = R.concat $ for bss (\bs -> elevate $ R.chunk bs >> singleton '\n') -- | 'words' breaks a byte stream up into a succession of byte streams -- corresponding to words, breaking Chars representing white space. This is @@ -562,7 +562,7 @@ -} unwordsIndividual :: Monad m => Stream (Of B.ByteString) m r -> ByteString m r -unwordsIndividual bss = R.concat $ for bss (\bs -> layer $ R.chunk bs >> singleton ' ')+unwordsIndividual bss = R.concat $ for bss (\bs -> elevate $ R.chunk bs >> singleton ' ')
LICENSE view
@@ -1,4 +1,4 @@-Copyright (c) 2015, michaelt+Copyright (c) 2015, Michael Thompson All rights reserved.
streaming-bytestring.cabal view
@@ -1,5 +1,5 @@ name: streaming-bytestring-version: 0.1.0.8+version: 0.1.1.0 synopsis: effectful byte steams, or: bytestring io done right. description: This is an implementation of effectful, memory-constrained @@ -189,7 +189,7 @@ , mtl >=2.1 && <2.3 , mmorph >=1.0 && <1.2 , transformers >=0.3 && <0.5- , streaming > 0.1.0.15 && < 0.1.1+ , streaming > 0.1.0.20 && < 0.1.1.2 if impl(ghc < 7.8) build-depends: bytestring < 0.10.4.0