Skip to content

Commit

Permalink
Export noFlags
Browse files Browse the repository at this point in the history
  • Loading branch information
garyb committed Feb 18, 2015
1 parent a9a1fc6 commit 02376e8
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 14 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,10 @@

match :: Regex -> String -> Maybe [String]

#### `noFlags`

noFlags :: RegexFlags

#### `parseFlags`

parseFlags :: String -> RegexFlags
Expand Down
29 changes: 15 additions & 14 deletions src/Data/String/Regex.purs
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
module Data.String.Regex (
Regex(..),
RegexFlags(..),
regex,
source,
flags,
renderFlags,
parseFlags,
test,
match,
replace,
replace',
search,
split
module Data.String.Regex
( Regex(..)
, RegexFlags(..)
, regex
, source
, flags
, renderFlags
, parseFlags
, test
, match
, replace
, replace'
, search
, split
, noFlags
) where

import Data.Function
Expand Down

0 comments on commit 02376e8

Please sign in to comment.