packages feed

regex-pderiv-0.1.1: Text/Regex/PDeriv/String.lhs

> {- By Kenny Zhuo Ming Lu and Martin Sulzmann, 2009, BSD License -}

A string implementation of reg exp pattern matching using partial derivative

> {-# LANGUAGE GADTs, MultiParamTypeClasses, FunctionalDependencies,
>     FlexibleInstances, TypeSynonymInstances, FlexibleContexts #-} 


> module Text.Regex.PDeriv.String 
>     ( Regex
>     , CompOption(..)
>     , ExecOption(..)
>     , defaultCompOpt
>     , defaultExecOpt
>     , compile
>     , execute
>     , regexec
>     ) where 

The re-exports

> import Text.Regex.PDeriv.String.LeftToRightD ( Regex
>                                              , CompOption(..)
>                                              , ExecOption(..)
>                                              , defaultCompOpt
>                                              , defaultExecOpt
>                                              , compile
>                                              , execute
>                                              , regexec
>                                              )