whitespace package:sbv

Recognize white space.
>>> prove $ \c -> c `match` whiteSpace .=> isSpaceL1 c
Q.E.D.
Recognize white-space, but without a new line.
>>> prove $ \c -> c `match` whiteSpaceNoNewLine .=> c `match` whiteSpace .&& c ./= literal '\n'
Q.E.D.