| 157 | // NotOperator |
| 158 | template <typename Source> |
| 159 | inline int RegEx::MatchOpNot(const Source& source) const { |
| 160 | if (m_params.empty()) |
| 161 | return -1; |
| 162 | if (m_params[0].MatchUnchecked(source) >= 0) |
| 163 | return -1; |
| 164 | return 1; |
| 165 | } |
| 166 | |
| 167 | // SeqOperator |
| 168 | template <typename Source> |
nothing calls this directly
no test coverage detected