@hackage dstring0.3.0.1
Difference strings.
Categories
License
BSD-3-Clause
Maintainer
Bas van Dijk <v.dijk.bas@gmail.com>
Links
Versions
Installation
Dependencies (3)
- base >=4 && <5
- dlist >=0.5 && <0.6
- to-string-class >=0.1.2 && <0.2 Show all…
Dependents (5)
@hackage/acme-everything, @hackage/string-combinators, @hackage/HaTeX, @hackage/numerals, @hackage/repr
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' without using language extensions (TypeSynonymInstances or FlexibleInstances) so we can write overloaded string literals of type DString.