mirror of
https://github.com/mrkkrp/megaparsec.git
synced 2024-12-21 07:11:39 +03:00
25 lines
617 B
Haskell
25 lines
617 B
Haskell
-----------------------------------------------------------------------------
|
|
-- |
|
|
-- Module : Text.ParserCombinators.Parsec.Perm
|
|
-- Copyright : (c) Paolo Martini 2007
|
|
-- License : BSD-style (see the LICENSE file)
|
|
--
|
|
-- Maintainer : derek.a.elkins@gmail.com
|
|
-- Stability : provisional
|
|
-- Portability : portable
|
|
--
|
|
-- Parsec compatibility module
|
|
--
|
|
-----------------------------------------------------------------------------
|
|
|
|
module Text.ParserCombinators.Parsec.Perm
|
|
( PermParser,
|
|
permute,
|
|
(<||>),
|
|
(<$$>),
|
|
(<|?>),
|
|
(<$?>)
|
|
) where
|
|
|
|
import Text.Parsec.Perm
|