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