Portability | GHC |
---|---|
Stability | experimental |
Maintainer | bos@serpentine.com, rtomharper@googlemail.com, duncan@haskell.org |
Safe Haskell | Safe-Infered |
Data.Text.Lazy.Fusion
Description
Core stream fusion functionality for text.
Documentation
unstream :: Stream Char -> TextSource
O(n) Convert a 'Stream Char' into a Text
, using
defaultChunkSize
.
unstreamChunks :: Int -> Stream Char -> TextSource
O(n) Convert a 'Stream Char' into a Text
, using the given
chunk size.