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