Changes between Version 1 and Version 2 of Proposals/text
- Timestamp:
- 08/30/10 10:48:31 (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Proposals/text
v1 v2 49 49 clashes with Prelude functions, e.g. 50 50 51 {{{ 51 52 import qualified Data.Text as T 53 }}} 52 54 53 55 Documentation and tarball from the hackage page: 54 56 57 {{{ 55 58 http://hackage.haskell.org/package/text 59 }}} 56 60 57 61 Development repo: 58 62 63 {{{ 59 64 darcs get http://code.haskell.org/text/ 65 }}} 60 66 61 67 == Rationale == … … 103 109 'stream' abstraction[1] 104 110 111 A large testsuite, with [http://code.haskell.org/~dons/tests/text/ coverage data, is provided]. 112 105 113 == The API == 106 114 … … 135 143 * The implementation uses a number of language extensions: 136 144 145 {{{ 137 146 CPP 138 147 MagicHash … … 144 153 ExistentialQuantification 145 154 DeriveDataTypeable 155 }}} 146 156 147 157 * The implementation is entirely Haskell (no additional C code or libraries). … … 170 180 = References = 171 181 172 [1]: "Stream Fusion: From Lists to Streams to Nothing at All", Coutts, 173 Leshchinskiy and Stewart, ICFP 2007, Freiburg, Germany. 182 [1]: "Stream Fusion: From Lists to Streams to Nothing at All", Coutts, Leshchinskiy and Stewart, ICFP 2007, Freiburg, Germany.
