| Safe Haskell | None |
|---|---|
| Language | Haskell2010 |
Text.Regex.Do.Pcre.Match
Description
Documentation
class ExplicitMatch n h => Match n h out where Source
match covers all ExplicitMatch funs
compiler looks up the appropriate function depending on the result type
Instances
| ExplicitMatch n h => Match n h Bool Source | |
| ExplicitMatch n h => Match n h [MatchArray] Source | |
| ExplicitMatch n h => Match n h [[h]] Source | |
| ExplicitMatch n h => Match n h (Maybe MatchArray) Source | |
| ExplicitMatch n h => Match n h [h] Source |
class Rx_ n h => ExplicitMatch n h where Source
Minimal complete definition
Nothing
Methods
Arguments
| :: Pattern n | |
| -> Body h | |
| -> Maybe MatchArray |
matchTest :: Pattern n -> Body h -> Bool Source
Arguments
| :: Pattern n | |
| -> Body h | |
| -> [MatchArray] |
Instances
| ExplicitMatch String String Source | accepts regex
True |
| ExplicitMatch String ByteString Source | accepts regex |
| ExplicitMatch ByteString String Source | accepts regex |
| ExplicitMatch ByteString ByteString Source | accepts regex |
| ExplicitMatch Regex String Source | accepts |
| ExplicitMatch Regex ByteString Source | accepts |