Commit 3c9ceb32 authored by miloyip's avatar miloyip

Add doxygen notes for regex

parent 0934803a
......@@ -30,6 +30,16 @@ namespace internal {
static const SizeType kRegexInvalidState = ~SizeType(0); //!< Represents an invalid index in GenericRegex::State::out, out1
//! Regular expression engine.
/*!
Supported regular expression syntax:
- \c ab Concatenation
- \c a|b Alternation
- \c a? Zero or one
- \c a* Zero or more
- \c a+ One or more
- \c (ab)* Parenthesis grouping
*/
template <typename Encoding, typename Allocator = CrtAllocator>
class GenericRegex {
public:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment