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: isSpace
Type: Char -> Bool
Description: True if the character is a white character in the Latin-1 range
Related:

Example 1

Input: isSpace 'A'

Output: False

Example 2

Input: isSpace ' '

Output: True

Example 3

Input: isSpace '\n'

Output: True