Simplify functions exposed (all part of the MonadParser class
This commit is contained in:
parent
5fa32e35db
commit
ecfd682b34
1 changed files with 1 additions and 9 deletions
|
@ -2,21 +2,13 @@
|
||||||
{-# LANGUAGE ConstraintKinds #-}
|
{-# LANGUAGE ConstraintKinds #-}
|
||||||
{-# LANGUAGE UndecidableInstances #-}
|
{-# LANGUAGE UndecidableInstances #-}
|
||||||
module PDF.Parser (
|
module PDF.Parser (
|
||||||
MonadParser
|
MonadParser(..)
|
||||||
, Parser
|
, Parser
|
||||||
, (<?>)
|
, (<?>)
|
||||||
, block
|
|
||||||
, char
|
|
||||||
, decNumber
|
|
||||||
, hexNumber
|
|
||||||
, octDigit
|
, octDigit
|
||||||
, on
|
, on
|
||||||
, oneOf
|
|
||||||
, runParser
|
, runParser
|
||||||
, evalParser
|
, evalParser
|
||||||
, string
|
|
||||||
, takeAll
|
|
||||||
, takeAll1
|
|
||||||
) where
|
) where
|
||||||
|
|
||||||
import Control.Applicative (Alternative, (<|>))
|
import Control.Applicative (Alternative, (<|>))
|
||||||
|
|
Loading…
Reference in a new issue