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

Safe HaskellSafe-Inferred
LanguageHaskell98

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 -> b Source

type synonyms

type ST = Text Source

type LT = Text Source

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

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

An infix synonym for mappend.

Since: 4.5.0.0