comparison
| 324 | |
| 325 | // comparison |
| 326 | bool equal( const split_iterator& Other ) const |
| 327 | { |
| 328 | bool bEof=eof(); |
| 329 | bool bOtherEof=Other.eof(); |
| 330 | |
| 331 | return bEof || bOtherEof ? bEof==bOtherEof : |
| 332 | ( |
| 333 | m_Match==Other.m_Match && |
| 334 | m_Next==Other.m_Next && |
| 335 | m_End==Other.m_End |
| 336 | ); |
| 337 | } |
| 338 | |
| 339 | public: |
| 340 | // operations |