in reply to Re: returning large arrays from functions
in thread returning large arrays from functions
populateThingArray( \my @c ); $c[ ... ];
as a side note, one can use the fat comma for syntactic sugar:
calcArrays( $par1, $par2 => \ my (@a,@b) );
Cheers Rolf
Update: extended code to return multiple Arrays.
|
|---|