|
Inserts a markup object or PCDATA at the end of the called element
.
virtual markup::iterator element::push_back(1st Variety
const markup& mkup
);
virtual markup::iterator element::push_back(2nd Variety
const std::string& pcdat
);
A markup
derived object, which can be one of the following, an element
, pcdata
, comment
, or procinstr
.
A string argument which represents PCDATA to insert as content.
Returns an iterator
which points to the inserted markup object.
The first variety is equivalent to the operation element::insert(markup& mkup)
. The second variety is equivalent to the operation element::insert(std::string&
pcdat)
. The insert()
operations, however, have overloads which allow markup objects to be inserted anywhere amongst possible
other children within the element, while push_back()
always inserts a markup object at the end of the called element
.
logarithmic