unicode-data-0.3.0: Access Unicode character database
Copyright(c) 2020 Composewell Technologies and Contributors
LicenseApache-2.0
Maintainerstreamly@composewell.com
Stabilityexperimental
Safe HaskellNone
LanguageHaskell2010

Unicode.Char.Case

Contents

Description

Case and case mapping related functions.

Synopsis

Predicates

isLowerCase :: Char -> Bool Source #

Returns True for lower-case letters.

Since: 0.3.0

isLower :: Char -> Bool Source #

Deprecated: Use isLowerCase instead. Note that the behavior of this function does not match base:Data.Char.isLower. See Unicode.Char.Case.Compat for behavior compatible with base:Data.Char.

Returns True for lower-case letters.

Since: 0.1.0

isUpperCase :: Char -> Bool Source #

Returns True for upper-case letters.

Since: 0.3.0

isUpper :: Char -> Bool Source #

Deprecated: Use isUpperCase instead. Note that the behavior of this function does not match base:Data.Char.isUpper. See Unicode.Char.Case.Compat for behavior compatible with base:Data.Char.

Returns True for upper-case letters.

Since: 0.1.0