Simplify functions exposed (all part of the MonadParser class

This commit is contained in:
Tissevert 2020-02-06 16:52:22 +01:00
parent 5fa32e35db
commit ecfd682b34
1 changed files with 1 additions and 9 deletions

View File

@ -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, (<|>))