Conversation
Pull Request Test Coverage Report for Build 2643Details
💛 - Coveralls |
aeabf96 to
ace9749
Compare
ace9749 to
81ae74c
Compare
31b8a12 to
8db3295
Compare
8db3295 to
029a2b5
Compare
8c34579 to
0b7b786
Compare
0b7b786 to
663abb6
Compare
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 663abb621e
ℹ️ About Codex in GitHub
Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".
663abb6 to
ed4b498
Compare
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: ed4b49870f
ℹ️ About Codex in GitHub
Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".
ed4b498 to
3f031e0
Compare
Summary
This PR introduces a full surface regex API for both
stringandbytes, built on top of the existing regex engine and parser infrastructure.What changed
Regex::new(StringView) -> Regex raiseBytesRegex::new(StringView) -> BytesRegex raiseRegex::escape(StringView) -> StringViewBytesRegex::escape(StringView) -> StringViewRegexandBytesRegex:findreplace_bysplitinternal/regex_parsertointernal/regex_syntax.internal/regex_syntax::escapewith dedicated tests.string/bytesREADME regex sections with syntax coverage, constraints, and runnable examples.Semantics and notes
Tests
find