File: Attoparsec.hs

package info (click to toggle)
haskell-attoparsec 0.14.4-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 880 kB
  • sloc: haskell: 4,749; ansic: 170; makefile: 22
file content (23 lines) | stat: -rw-r--r-- 607 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
-- |
-- Module      :  Data.Attoparsec
-- Copyright   :  Bryan O'Sullivan 2007-2015
-- License     :  BSD3
--
-- Maintainer  :  bos@serpentine.com
-- Stability   :  experimental
-- Portability :  unknown
--
-- Simple, efficient combinator parsing for
-- 'Data.ByteString.ByteString' strings, loosely based on the Parsec
-- library.
--
-- This module is deprecated. Use "Data.Attoparsec.ByteString"
-- instead.

module Data.Attoparsec
    {-# DEPRECATED "This module will be removed in the next major release." #-}
    (
      module Data.Attoparsec.ByteString
    ) where

import Data.Attoparsec.ByteString