| 9560 | |
| 9561 | template <url_pattern_regex::regex_concept regex_provider> |
| 9562 | constexpr bool constructor_string_parser<regex_provider>::is_group_close() |
| 9563 | const { |
| 9564 | // If parser's token list[parser's token index]'s type is "close", then return |
| 9565 | // true. |
| 9566 | return token_list[token_index].type == token_type::CLOSE; |
| 9567 | } |
| 9568 | |
| 9569 | template <url_pattern_regex::regex_concept regex_provider> |
| 9570 | constexpr bool |