| 4526 | const arg_string& arg() const noexcept { return arg_; } |
| 4527 | |
| 4528 | const parameter* param() const noexcept { |
| 4529 | return match_ && match_->is_param() |
| 4530 | ? &(match_->as_param()) : nullptr; |
| 4531 | } |
| 4532 | |
| 4533 | std::size_t repeat() const noexcept { return repeat_; } |
| 4534 |
no test coverage detected