-- | -- Module : Text.Megaparsec.String -- Copyright : © 2015–2017 Megaparsec contributors -- License : FreeBSD -- -- Maintainer : Mark Karpov -- Stability : experimental -- Portability : portable -- -- Convenience definitions for working with 'String' as input stream. module Text.Megaparsec.String (Parser) where import Text.Megaparsec.Error (Dec) import Text.Megaparsec.Prim -- | Modules corresponding to various types of streams define 'Parser' -- accordingly, so user can use it to easily change type of input stream by -- importing different “type modules”. This one is for strings. type Parser = Parsec Dec String