|
Inserts a stylesheet item into a stylesheet.
stylesheet& stylesheet::operator << ( const_stylesheet_item& item );
A stylesheet_item object, which can be one of the following derived objects: stylesheet_rule
, stylesheet_import
, or stylesheet_comment
.
Returns a reference to the stylesheet object. Thus, this operation can be chained for multiple insertions.
This operation offers an alternate method for inserting stylesheet items into a stylesheet. Although this method doesn't return an iterator like the insert()
operation, it does allow the chaining of insertions, which the insert()
operation does not. With this operation, the inserted item is
inserted at the end of the stylesheet.
Logarithmic