XML::DOM を使用して Perl コードに取り組んでいます。
以下のようにPerlのヘルプ(XML::DOM::Node)で見つけました。
@list = $node->getChildNodes; # returns a perl list
$nodelist = $node->getChildNodes; # returns a NodeList (object reference)
for my $kid ($node->getChildNodes) # iterate over the children of $node
以下のように関数に渡すと。
&myfunction($node->getChildNodes)
リストへの参照が得られません。
以下のように、一時スカラー変数を宣言せずに参照を取得する方法はありますか。
my $tmp=$node->getChildNodes;
&myfunction($tmp)
ありがとうございました。