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: isDigit
Type: Char -> Bool
Description: True if the character is a decimal numeric character (0..9)
Related:

Example 1

Input: isDigit 'A'

Output: False

Example 2

Input: isDigit '1'

Output: True