Changes between Version 2 and Version 3 of OpaqueText
- Timestamp:
- 04/01/12 08:17:49 (14 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
OpaqueText
v2 v3 11 11 == Summary == 12 12 13 A short summary of the extension/modification. 13 14 Add the Text datatype to the language. 15 16 The text package for GHC exposes a Text datatype that represents a string. 17 18 The current String = [Char] standard has issues with 19 20 * efficiency: there are more efficient representations than linked lists 21 * correctness: for Unicode correctness, one must operate on a string as a whole rather than individual code points 22 23 Promoting Text solves both of these issues. 24 14 25 15 26 == Description ==
