string-0.0.0: Common things for strings

Safe HaskellSafe-Inferred

Data.Strings

Description

Extra functions and classes for dealing with Strings.

Synopsis

Documentation

module Data.Char

lower :: String -> StringSource

Lower case a string.

upper :: String -> StringSource

Upper case a string.

trim :: [Char] -> [Char]Source

Trim a string.

class ToString a whereSource

A class for converting to strings.

Methods

toString :: a -> StringSource

Instances