|
Dereference operator for markup::iterator and markup::const_iterator.
markup& iterator::operator *() const; iterator
const markup& const_iterator::operator *() const; const_iterator
None
Returns a reference (or const reference for const_iterator) to the underlying markup object.
Dereferences the markup iterator, returning a reference to the underlying markup object (for iterator), and a const reference to the underlying markup object (for const_iterator). This can be very handy, especially for the iterator, as it allows the insertion of other child markup objects using the insertion operator, as shown in the example below.
Constant