| 143 | // the FIRST entry on the list. |
| 144 | template <typename Source> |
| 145 | inline int RegEx::MatchOpAnd(const Source& source) const { |
| 146 | int first = -1; |
| 147 | for (std::size_t i = 0; i < m_params.size(); i++) { |
| 148 | int n = m_params[i].MatchUnchecked(source); |
| 149 | if (n == -1) |
| 150 | return -1; |
| 151 | if (i == 0) |
| 152 | first = n; |
| 153 | } |
| 154 | return first; |
| 155 | } |
| 156 | |
| 157 | // NotOperator |
| 158 | template <typename Source> |
nothing calls this directly
no test coverage detected