Eof check ! Check the eof condition. Eof condition means that there is nothing more to be searched i.e. find_iterator is after the last match. */
| 158 | is after the last match. |
| 159 | */ |
| 160 | bool eof() const |
| 161 | { |
| 162 | return |
| 163 | this->is_null() || |
| 164 | ( |
| 165 | m_Match.begin() == m_End && |
| 166 | m_Match.end() == m_End |
| 167 | ); |
| 168 | } |
| 169 | |
| 170 | private: |
| 171 | // Attributes |