Search Results

9
votes

Efficient String Implementation in Haskell

Apart from String/ByteString there is now the Text library which combines the best of both worlds—it wor …
3
votes

Haskell’s algebraic data types

A simple reason why they are called algebraic; there are both sum (logical disjunction) and product (logical conjunction) types. A sum type is a discriminated union, e.g: data Bool …