Module

Neon.Primitive.Char

Package
purescript-neon
Repository
tfausak/purescript-neon

#toLower Source

toLower :: Char -> Char

Converts a character to lower case.

toLower 'A' -- 'a'
toLower 'a' -- 'a'

#toString Source

toString :: Char -> String

Converts a character into a string.

toString 'a' -- "a"

#toUpper Source

toUpper :: Char -> Char

Converts a character to upper case.

toUpper 'a' -- 'A'
toUpper 'A' -- 'A'