in reply to Re: Using x to build data structures considered harmful
in thread Using x to build data structures considered harmful

To amplify a bit: The original used x twice. Only one of them was evil. Note that the best WTDI may be:

my $matrix; { my @row = (0) x $width; $matrix = [map {[@row]} 1..$height]; }

OTOH, the most perlish way to do it is probably just my $matrix;, and letting perl autovivify the rest when it's created. I assume that dws had a reason to not do that, though.


Warning: Unless otherwise stated, code is untested. Do not use without understanding. Code is posted in the hopes it is useful, but without warranty. All copyrights are relinquished into the public domain unless otherwise stated. I am not an angel. I am capable of error, and err on a fairly regular basis. If I made a mistake, please let me know (such as by replying to this node).