diff options
Diffstat (limited to 'src/Hakyll/Core/Identifier/Pattern.hs')
| -rw-r--r-- | src/Hakyll/Core/Identifier/Pattern.hs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/Hakyll/Core/Identifier/Pattern.hs b/src/Hakyll/Core/Identifier/Pattern.hs index e1025ed..6bbfad8 100644 --- a/src/Hakyll/Core/Identifier/Pattern.hs +++ b/src/Hakyll/Core/Identifier/Pattern.hs @@ -36,6 +36,7 @@ module Hakyll.Core.Identifier.Pattern , castPattern , parseGlob , predicate + , list , regex , inGroup , matches @@ -106,6 +107,11 @@ parseGlob = Glob . parse' predicate :: (Identifier a -> Bool) -> Pattern a predicate = Predicate +-- | Create a 'Pattern' from a list of 'Identifier's it should match +-- +list :: [Identifier a] -> Pattern a +list = List + -- | Create a 'Pattern' from a regex -- -- Example: |
