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
;