just dereference it:

foo( @{ $R{"first"} } );

it's as easy as that =)

hth

Jos Boumans


> 
> Hi all,
> 
> here's my question :):
> 
> I define a hash array:
> our %R=("first" => [ "one", "two" ], "second" => ["third", "fourth"]);
> 
> Now I can get back back array references from this using:
> $R{"first"}
> 
> I also can get back the elements of this array:
> $R{"first"}->[0]    and so on..
> 
> but i would need to pass the whole array itself, not the reference to
> another sub. How can I do that?
> 
> thanks much,
> Balazs Pozsar.
> -- 
> 
> 
> 
> -- 
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 
> 


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to