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

Safe HaskellNone
LanguageHaskell2010

Data.Digit.D1

Synopsis

Documentation

class D1 d where Source #

Minimal complete definition

d1

Methods

d1 :: Prism' d () Source #

x1 :: d Source #

parse1 :: (D1 d, CharParsing p) => p d Source #

>>> parse (parse1 <* eof) "test" "1" :: Either ParseError BinDigit
Right BinDigit1
>>> parse parse1 "test" "1xyz" :: Either ParseError BinDigit
Right BinDigit1
>>> isn't _Right (parse parse1 "test" "xyz" :: Either ParseError BinDigit)
True