| ZVON > References > Haskell reference |
| Intro / Search / ZVON |
| | Indexes | Syntax | Prelude | Ratio | Complex | Numeric | Ix | Array | List | Maybe | >> Char << | Monad | IO | Directory | System | Time | Locale | CPUTime | Random |
| Module: | Char |
|---|---|
| Function: | toUpper |
| Type: | Char -> Char |
| Description: | converts a letter to the corresponding upper-case letter, leaving any other character unchanged. Any Unicode letter which has an upper-case equivalent is transformed. |
| Related: |
Input: toUpper 'a'
Output: 'A'
Input: toUpper 'B'
Output: 'B'
Input: toUpper '\n'
Output: '\n'