simple-parser-0.2.2: src/SimpleParser.hs
-- | This is basically a simpler and slower (Mega)Parsec that is fully backtracking by default.
--
-- The root module re-exports all modules. See "SimpleParser.Examples.Json" or the test suit for examples,
-- "SimpleParser.Parser" for the core transformer, "SimpleParser.Stream" for the source abstraction,
-- or "SimpleParser.Input" for useful combinators.
module SimpleParser
( module SimpleParser.Input
, module SimpleParser.Parser
, module SimpleParser.Result
, module SimpleParser.Stream
) where
import SimpleParser.Input
import SimpleParser.Parser
import SimpleParser.Result
import SimpleParser.Stream