@hackage to-string-class0.1.1

Converting string-like types to Strings.

This library provides the class:

class ToString s where toString :: s -> String

Instances for String and Char are provided. For other instances see the package:

http://hackage.haskell.org/package/to-string-instances

Also included is a general coercion function between string-like types:

fromToString :: (IsString s2, ToString s1) => s1 -> s2

fromToString = fromString . toString