-- |
-- Module : Data.Attoparsec.Types
-- Copyright : Bryan O'Sullivan 2007-2014
-- License : BSD3
--
-- Maintainer : bos@serpentine.com
-- Stability : experimental
-- Portability : unknown
--
-- Simple, efficient parser combinators for strings, loosely based on
-- the Parsec library.
module Data.Attoparsec.Types ( Parser , IResult(..) , Chunk(chunkElemToChar) ) where import Data.Attoparsec.Internal.Types (
Parser
(..),
IResult
(..),
Chunk
(..))