|
Equality and inequality operators for markup::iterator and markup::const_iterator.
bool operator ==(const markup::const_iterator& lhs, const markup::const_iterator& rhs);==
bool operator !=(const markup::const_iterator& lhs, const markup::const_iterator& rhs);!=
The left iterator to compare.
The right iterator to compare.
Returns true if the markup iterators have the same parent and point to the same child markup object.
Test two markup iterators for equality or inequality. This operation is not a member function, so it allows the conversion of iterator to const_iterator for both the left and right arguments.
Constant