blob: 41b4ed30f20d0a4789efc8629c0d0eb254210e0f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
-- |
-- Module : Data.Attoparsec
-- Copyright : Bryan O'Sullivan 2007-2011
-- License : BSD3
--
-- Maintainer : bos@serpentine.com
-- Stability : experimental
-- Portability : unknown
--
-- Simple, efficient combinator parsing for 'ByteString' strings,
-- loosely based on the Parsec library.
module Data.Attoparsec
(
module Data.Attoparsec.ByteString
) where
import Data.Attoparsec.ByteString
|