Max Sagebaum
Max Sagebaum
I did an update on Friday. The initial post is updated. The new features are: #### Modifiers ``` - [x] m Treat the string being matched against as multiple lines....
A further update. The initial post is updated. The new features are: #### Modifiers ``` - [x] x and xx Extend your pattern's legibility by permitting whitespace and comments. Details...
A currently final update. I added now the lookahead functions. #### Escape sequences ``` - [x] \x{}, \x00 character whose ordinal is the given hexadecimal number - [x] \o{}, \000...
I consider the implementation now finished. The major features are implemented and the remaining ones should not change the basic design that much. This is also because I have not...
Thanks. I planed to do that after the review/I am back from a vacation this week.
I agree that constexpr is necessary for the pure type matching. This also becomes critical if inspect is used in the context of a template parameter. Did you create a...
I would guess it is the wrong forward declaration of `operator_is`: ``` template [[nodiscard]] auto operator_is(T const& v, F const& f) -> bool; ``` The requirement is missing. This makes...
LGTM. In your current commits, there are always some white-space fixes. These clutter the commit a little bit. Maybe we can have a pull request, that fixes all the white-spaces...
Thanks for the hint, I did not know that this can be enabled in the github view.