|
Pointer operator for markup::descendant_iterator and markup::const_descendant_iterator.
markup* markup::descendant_iterator::operator ->() const; descendant_iterator
const markup* markup::const_descendant_iterator::operator *() const; const_descendant_iterator
None
Returns a pointer (or const pointer for const_descendant_iterator) to the underlying markup object.
Returns a pointer to the underlying markup object (for descendant_iterator), and a const poiinter to the markup object (for const_descendant_iterator). This can be very handy, especially for the descendant_iterator, as it allows you to insert more content into an underlying element.
Constant