packages feed

regex-applicative-0.1.4: Text/Regex/Applicative.hs

--------------------------------------------------------------------
-- |
-- Module    : Text.Regex.Applicative
-- Copyright : (c) Roman Cheplyaka
-- License   : MIT
--
-- Maintainer: Roman Cheplyaka <roma@ro-che.info>
-- Stability : experimental
--
-- To get started, see some examples on the wiki:
-- <https://github.com/feuerbach/regex-applicative/wiki/Examples>
--------------------------------------------------------------------

module Text.Regex.Applicative
    ( RE
    , sym
    , psym
    , anySym
    , string
    , reFoldl
    , (=~)
    , module Control.Applicative
    )
    where
import Text.Regex.Applicative.Interface
import Control.Applicative