string-conversions-0.2: Simplifies dealing with different types for strings

Safe HaskellSafe-Infered

Data.String.Conversions

Contents

Description

A type class for converting strings. Supported types are:

Assumes UTF-8 encoding for both types of ByteStrings.

Synopsis

class and conversions

cs :: ConvertibleStrings a b => a -> bSource

type synonyms

type ST = TextSource

type LT = TextSource

Generic string concatenation (with ghc >= 7.4 this is a re-export from Data.Monoid to avoid clashes.)

(<>) :: Monoid m => m -> m -> m

An infix synonym for mappend.