| 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: | isHexDigit |
| Type: | Char -> Bool |
| Description: | True if the character is a hexadecimal numeric character (0..9,A..F,a..f) |
| Related: |
Input: isHexDigit '8'
Output: True
Input: isHexDigit 'E'
Output: True
Input: isHexDigit 'X'
Output: False