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

Safe HaskellNone
LanguageHaskell2010

Data.Digit.D3

Synopsis

Documentation

class D3 d where Source #

Minimal complete definition

d3

Methods

d3 :: Prism' d () Source #

x3 :: d Source #

parse3 :: (D3 d, CharParsing p) => p d Source #

>>> parse (parse3 <* eof) "test" "3" :: Either ParseError DecDigit
Right DecDigit3
>>> parse parse3 "test" "3xyz" :: Either ParseError DecDigit
Right DecDigit3
>>> isn't _Right (parse parse3 "test" "xyz" :: Either ParseError DecDigit)
True