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: isUpper
Type: Char -> Bool
Description: True if the character is uppercase
Related:

Example 1

Input: isUpper 'A'

Output: True

Example 2

Input: isUpper 'a'

Output: False

Example 3

Input: isUpper '1'

Output: False