| 23 | } |
| 24 | |
| 25 | std::shared_ptr<RegexMatch> Regex::find(const std::string& expression) const { |
| 26 | return std::make_shared<FindRegexMatch>(regexImpl, expression); |
| 27 | } |
| 28 | |
| 29 | namespace { |
| 30 | bool isUtf8CodeUnitStartOfCodepoint(unsigned int i) { |
no outgoing calls