Richard Hundt > XML-DOM-Lite-0.15 > XML::DOM::Lite::NodeList

Download:
XML-DOM-Lite-0.15.tar.gz

Dependencies

Annotate this POD

CPAN RT

New  8
Open  1
View Bugs
Report a bug
Source  

NAME ^

XML::DOM::Lite::NodeList - blessed array ref for containing Node objects

SYNOPSIS ^

 $node->childNodes->insertNode($childNode, [$index]);
 my @removedNodes = $node->childNodes->removeNode($childNode);
 my $childNode = $node->childNodes->item($index);
 my $numChilds = $node->childNodes->length;