ZVON > References > Haskell reference
| Indexes | Syntax | Prelude | Ratio | Complex | Numeric | Ix | Array | List | Maybe | >> Char << | Monad | IO | Directory | System | Time | Locale | CPUTime | Random

Module: Char
Function: isLower
Type: Char -> Bool
Description: True if the character is lowercase
Related:

Example 1

Input: isLower 'A'

Output: False

Example 2

Input: isLower 'a'

Output: True

Example 3

Input: isLower '1'

Output: False