The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

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;