| 58 | } |
| 59 | |
| 60 | std::shared_ptr<RegexMatch> Regex::findAll(const std::string& expression) const { |
| 61 | return std::make_shared<FindAllRegexMatch>(regexImpl, expression); |
| 62 | } |
| 63 | |
| 64 | FindAllRegexMatch::FindAllRegexMatch(const std::regex& regexImpl, const std::string& expression) { |
| 65 | std::sregex_token_iterator i( |
no outgoing calls