in reply to
using arrays of arrays
Deep copying an array of arrays is a one-liner:
my @copy = map {[@$_]} @original;
[download]
Comment on
Re: using arrays of arrays
Download
Code
In Section
Seekers of Perl Wisdom