Safe HaskellSafe

WEditor.Base.Char

Description

Features of character sets.

Synopsis

Documentation

class HyphenChar c where #

Supporting hyphenation.

Minimal complete definition

defaultHyphen

Methods

defaultHyphen :: c #

The canonical hyphen character.

isDefaultHyphen :: c -> Bool #

Instances

Instances details
HyphenChar Char # 
Instance details

Defined in WEditor.Base.Char

Methods

defaultHyphen :: Char #

isDefaultHyphen :: Char -> Bool #

class WhitespaceChar c where #

Dealing with whitespace characters.

Methods

defaultIsWhitespace :: c -> Bool #

Predicate for identifying whitespace characters.

Instances

Instances details
WhitespaceChar Char # 
Instance details

Defined in WEditor.Base.Char

Methods

defaultIsWhitespace :: Char -> Bool #

class WhitespaceChar c => WordChar c where #

Dealing with word characters.

Methods

defaultIsWordChar :: c -> Bool #

Predicate for identifying word characters.

Instances

Instances details
WordChar Char # 
Instance details

Defined in WEditor.Base.Char

Methods

defaultIsWordChar :: Char -> Bool #