uu-parsinglib-2.5.2: src/Text/ParserCombinators/UU.hs
-- | The non-exported module "Text.ParserCombinators.UU.Examples" contains a list of examples of how to use the main functionality of this library which demonstrates:
--
-- * how to write basic parsers
--
-- * how to to write ambiguous parsers
--
-- * how the error correction works
--
-- * how to fine tune your parsers to get rid of ambiguities
--
-- * how to use the monadic interface
--
-- * what kind of error messages you can get if you write erroneous parsers
--
-- * how to use the permutation parsers
--
module Text.ParserCombinators.UU ( module Text.ParserCombinators.UU.Core
, module Text.ParserCombinators.UU.BasicInstances
, module Text.ParserCombinators.UU.Derived
, module Text.ParserCombinators.UU.Merge
, module Text.ParserCombinators.UU.Perms) where
import Text.ParserCombinators.UU.Core
import Text.ParserCombinators.UU.BasicInstances
import Text.ParserCombinators.UU.Derived
import Text.ParserCombinators.UU.Merge
import Text.ParserCombinators.UU.Perms