comparison
| 137 | |
| 138 | // comparison |
| 139 | bool equal( const find_iterator& Other ) const |
| 140 | { |
| 141 | bool bEof=eof(); |
| 142 | bool bOtherEof=Other.eof(); |
| 143 | |
| 144 | return bEof || bOtherEof ? bEof==bOtherEof : |
| 145 | ( |
| 146 | m_Match==Other.m_Match && |
| 147 | m_End==Other.m_End |
| 148 | ); |
| 149 | } |
| 150 | |
| 151 | public: |
| 152 | // operations |