Name: dstring Version: 0.2 Synopsis: Difference strings. Description: Difference strings: a data structure for O(1) append on strings. Note that a DString is just a newtype wrapper around a 'DList Char'. The reason we need a new type instead of just a type synonym is that we can have an 'instance IsString DString' so we can write overloaded string literals of type DString. Category: Data License: BSD3 License-file: LICENSE Author: Bas van Dijk Maintainer: Bas van Dijk Copyright: 2009 Bas van Dijk Cabal-version: >= 1.6 Build-Type: Simple Stability: experimental Source-repository head Type: darcs Location: http://code.haskell.org/~basvandijk/code/dstring Library Build-Depends: base, dlist Exposed-modules: Data.DString Ghc-options: -O2 -Wall