|
Returns a reference (or const reference in the 2nd variety) to the stylesheet item at the specified index.
stylesheet_item& stylesheet::operator[](1st Variety
size_type n
);
const stylesheet_item& stylesheet::operator[](2nd Variety
size_type n
) const;
An index specifying the stylesheet_item to return.
A reference (or const reference in the 2nd variety) of the stylesheet_item which resides at the specified index.
Returns a reference (or const reference in the 2nd variety) of the stylesheet_item
which resides at the specified index. Caller must
insure that n is in a valid range. This operation is not exception safe. If you need an exception safe index operation, use stylesheet::at().
Constant