|
|
|
returns a child iterator pointing just past the last markup object in the document.
markup::iterator document::end();1st Variety
markup::const_iterator document::end() const;2nd Variety
none
A child markup iterator (or const_iterator in the second variety) pointing just past the last markup object in the document.
This operation is normally used to mark the end of a child iteration. For this to work properly, the iterator should be compared to
end(). When this condition is true, the child iterator has already reached the end. This is consistant with the
iterators of the STL.
Constant