| 251 | Result Contains(cripts::string_view subject, PCRE2_SIZE offset = 0, uint32_t options = 0); |
| 252 | |
| 253 | Result |
| 254 | Match(cripts::string_view subject, PCRE2_SIZE offset = 0, uint32_t options = 0) |
| 255 | { |
| 256 | return Contains(subject, offset, options); |
| 257 | } |
| 258 | |
| 259 | private: |
| 260 | RegexEntries _regexes; |
nothing calls this directly
no test coverage detected