{-# LANGUAGE NoImplicitPrelude #-} module Data.Digit.D8( D8(..) , parse8 ) where import Data.Digit.Digit(Digit(Digit8)) import Papa import Text.Parser.Char(CharParsing, char) import Text.Parser.Combinators(()) -- $setup -- >>> import Text.Parsec(parse, ParseError, eof) -- >>> import Data.Void(Void) class D8 d where d8 :: Prism' d () x8 :: d x8 = d8 # () instance D8 () where d8 = id -- | -- -- >>> parse (parse8 <* eof) "test" "8" :: Either ParseError Digit -- Right 8 -- -- >>> parse parse8 "test" "8xyz" :: Either ParseError Digit -- Right 8 -- -- >>> isn't _Right (parse parse8 "test" "xyz" :: Either ParseError Digit) -- True -- -- prop> \c -> c /= '8' ==> isn't _Right (parse parse8 "test" [c] :: Either ParseError Digit) parse8 :: (D8 d, CharParsing p) => p d parse8 = x8 <$ char '8' "8" instance D8 Digit where d8 = prism' (\() -> Digit8) (\d -> case d of Digit8 -> Just () _ -> Nothing)