digit-0.6: A data-type representing digits 0-9 and other combinations

Safe HaskellNone
LanguageHaskell2010

Data.Digit.D6

Synopsis

Documentation

class D6 d where Source #

Minimal complete definition

d6

Methods

d6 :: Prism' d () Source #

x6 :: d Source #

parse6 :: (D6 d, CharParsing p) => p d Source #

>>> parse (parse6 <* eof) "test" "6" :: Either ParseError DecDigit
Right DecDigit6
>>> parse parse6 "test" "6xyz" :: Either ParseError DecDigit
Right DecDigit6
>>> isn't _Right (parse parse6 "test" "xyz" :: Either ParseError DecDigit)
True