Copyright | (c) 2009, 2010 Bryan O'Sullivan |
---|---|
License | BSD-style |
Maintainer | bos@serpentine.com |
Stability | experimental |
Portability | GHC |
Safe Haskell | None |
Language | Haskell98 |
Warning: this is an internal module, and does not have a stable API or name. Functions in this module may not check or enforce preconditions expected by public modules. Use at your own risk!
Core stream fusion functionality for text.
Documentation
unstream :: Stream Char -> Text Source
O(n) Convert a 'Stream Char' into a Text
, using
defaultChunkSize
.
unstreamChunks :: Int -> Stream Char -> Text Source
O(n) Convert a 'Stream Char' into a Text
, using the given
chunk size.