Safe Haskell | None |
---|---|
Language | Haskell2010 |
- class D1 d where
- parse1 :: (D1 d, CharParsing p) => p d
Documentation
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