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 UndecidableInstances #-}
|
||||
module PDF.Parser (
|
||||
MonadParser
|
||||
MonadParser(..)
|
||||
, Parser
|
||||
, (<?>)
|
||||
, block
|
||||
, char
|
||||
, decNumber
|
||||
, hexNumber
|
||||
, octDigit
|
||||
, on
|
||||
, oneOf
|
||||
, runParser
|
||||
, evalParser
|
||||
, string
|
||||
, takeAll
|
||||
, takeAll1
|
||||
) where
|
||||
|
||||
import Control.Applicative (Alternative, (<|>))
|
||||
|
|
Loading…
Reference in a new issue