Changes between Version 2 and Version 3 of OpaqueText

Show
Ignore:
Timestamp:
04/01/12 08:17:49 (14 months ago)
Author:
GregWeber
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • OpaqueText

    v2 v3  
    1111== Summary == 
    1212 
    13 A short summary of the extension/modification. 
     13 
     14Add the Text datatype to the language. 
     15 
     16The text package for GHC exposes a Text datatype that represents a string. 
     17 
     18The 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 
     23Promoting Text solves both of these issues. 
     24 
    1425 
    1526== Description ==