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: | isOctDigit |
Type: | Char -> Bool |
Description: | True if the character is an octal numeric character (0..7) |
Related: |
Input: isOctDigit 'A'
Output: False
Input: isOctDigit '1'
Output: True
Input: isOctDigit '8'
Output: False