in reply to Re: Re: qw with anonomous list ref
in thread qw with anonomous list ref
I have used it once for setting up an AoA structure.
I filled 3 seperate arrays from reading and processing 3 different files and then combined them
my @AoA = \(@a, @b, @c);
Slightly easier than initialising (or pushing) 3 anon arrays and then filling them with push @{$AoA[n]}, $stuff; or whatever.
|
---|