File: Summa.hs

package info (click to toggle)
haskell-regex 1.1.0.2-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 424 kB
  • sloc: haskell: 4,533; makefile: 3
file content (20 lines) | stat: -rw-r--r-- 617 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
module Text.RE.Summa
  ( -- $collection
    module Text.RE.REOptions
  , module Text.RE.Replace
  , module Text.RE.TestBench
  , module Text.RE.Tools
  ) where

import Text.RE.REOptions
import Text.RE.Replace
import Text.RE.TestBench
import Text.RE.Tools

-- $collection
--
-- This module collects together all of the generic regex APIs not
-- exported by the principal API modules, specialised for each back end
-- and text type. The regex API is modular with only the most common types
-- and functions being exported by these modules but the remaining modules
-- may be imported en masse by importing this module.