Safe Haskell | Safe |
---|
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.
Instances
HyphenChar Char # | |
Defined in WEditor.Base.Char defaultHyphen :: Char # isDefaultHyphen :: Char -> Bool # |
class WhitespaceChar c where #
Dealing with whitespace characters.
defaultIsWhitespace :: c -> Bool #
Predicate for identifying whitespace characters.
Instances
WhitespaceChar Char # | |
Defined in WEditor.Base.Char defaultIsWhitespace :: Char -> Bool # |
class WhitespaceChar c => WordChar c where #
Dealing with word characters.
defaultIsWordChar :: c -> Bool #
Predicate for identifying word characters.
Instances
WordChar Char # | |
Defined in WEditor.Base.Char defaultIsWordChar :: Char -> Bool # |