CSS::DOM::Array - Array class for CSS::DOM
Contents
Description
This module serves as a base class for array-like objects required by CSS::DOM.
A CSS::DOM::Array object is simply a blessed array reference. You can use it as an array directly, or use
the methods below.
Methods
Constructor
$array = new CSS::DOM::Array;
Creates a new blessed array.
ObjectMethods
length
Returns the length of the array.
item ( $index)
Returns the array element at the given $index.
Name
CSS::DOM::Array - Array class for CSS::DOM
See Also
CSS::DOM
CSS::DOM::RuleList
CSS::DOM::StyleSheetList
CSS::DOM::MediaList
perl v5.36.0 2023-08-02 CSS::DOM::Array(3pm)
Synopsis
use CSS::DOM::Array;
$array = new CSS::DOM::Array 'this', 'that';
@$array;
$array->[0];
# etc.
$array->length;
$array->item(0);
Version
Version 0.17
