Safe Haskell | Safe |
---|
WEditor.Base.Char
Description
Features of character sets.
Synopsis
- class HyphenChar c where
- defaultHyphen :: c
- isDefaultHyphen :: c -> Bool
- class WhitespaceChar c where
- defaultIsWhitespace :: c -> Bool
- class WhitespaceChar c => WordChar c where
- defaultIsWordChar :: c -> Bool
Documentation
class HyphenChar c where #
Supporting hyphenation.
Minimal complete definition
Instances
HyphenChar Char # | |
Defined in WEditor.Base.Char |
class WhitespaceChar c where #
Dealing with whitespace characters.
Instances
WhitespaceChar Char # | |
Defined in WEditor.Base.Char Methods defaultIsWhitespace :: Char -> Bool # |
class WhitespaceChar c => WordChar c where #
Dealing with word characters.
Instances
WordChar Char # | |
Defined in WEditor.Base.Char Methods defaultIsWordChar :: Char -> Bool # |