|
Returns a reference (or const reference in the 2nd variety) to the declaration at the specified index.
declaration& stylesheet_item::operator[](1st Variety
size_type n
);
const declaration& stylesheet::operator[](2nd Variety
size_type n
) const;
An index specifying the declaration to return.
A reference (or const reference in the 2nd variety) of the declaration which resides at the specified index.
Returns a reference (or const reference in the 2nd variety) of the declaration
which resides at the specified index. Caller must insure
that n is in a valid range. This operation is not exception safe. For an exception save indexed operation, use stylesheet_item::at().
This is one of the operations of stylesheet_item which is relevent only when called on a stylesheet_rule.
, since only stylesheet rules can include
declaration
s.
Constant