- or download this
sub large_array_ref {
my $large_array_ref = [];
...
my $c = large_array_ref();
$c->[ ... ];
- or download this
sub large_array_ref {
my $large_array_ref = shift;
...
large_array_ref( \my @c );
$c[ ... ];
- or download this
populateThingArray( \my @c );
$c[ ... ];